31caa36b9a
This was added mainly just to spin the wheels of the Variables method generator. Its implementation is not yet complete.
21 lines
443 B
Go
Executable File
21 lines
443 B
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/apparentlymart/go-zcl/zcl"
|
|
)
|
|
|
|
func (e *FunctionCallExpr) Variables() []zcl.Traversal {
|
|
return Variables(e)
|
|
}
|
|
|
|
func (e *LiteralValueExpr) Variables() []zcl.Traversal {
|
|
return Variables(e)
|
|
}
|
|
|
|
func (e *ScopeTraversalExpr) Variables() []zcl.Traversal {
|
|
return Variables(e)
|
|
}
|