mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
11 lines
304 B
Go
11 lines
304 B
Go
package terraform
|
|
|
|
// EvalNoop is an EvalNode that does nothing.
|
|
type EvalNoop struct{}
|
|
|
|
func (EvalNoop) Args() ([]EvalNode, []EvalType) { return nil, nil }
|
|
func (EvalNoop) Eval(EvalContext, []interface{}) (interface{}, error) {
|
|
return nil, nil
|
|
}
|
|
func (EvalNoop) Type() EvalType { return EvalTypeNull }
|