hcl/zcl/zclsyntax/expression_vars.go
Martin Atkins 54fcc09ed4 zclsyntax: AST node for the "for" expression
This expression is used to project collections into other collections.
2017-06-13 08:42:36 -07:00

57 lines
1.1 KiB
Go
Executable File

package zclsyntax
// Generated by expression_vars_get.go. DO NOT EDIT.
// Run 'go generate' on this package to update the set of functions here.
import (
"github.com/zclconf/go-zcl/zcl"
)
func (e *BinaryOpExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *ConditionalExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *ForExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *FunctionCallExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *IndexExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *LiteralValueExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *ObjectConsExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *RelativeTraversalExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *ScopeTraversalExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *TemplateExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *TupleConsExpr) Variables() []zcl.Traversal {
return Variables(e)
}
func (e *UnaryOpExpr) Variables() []zcl.Traversal {
return Variables(e)
}