2fc14b729a
Conditional expression parsing is ostensibly implemented, but since it depends on the rest of the expression parsers -- not yet implemented -- it cannot be tested in isolation. Also includes an initial implementation of the conditional expression node, but this is also not yet tested and so may need further revisions once we're in a better position to test it.
25 lines
516 B
Go
Executable File
25 lines
516 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/zclconf/go-zcl/zcl"
|
|
)
|
|
|
|
func (e *ConditionalExpr) Variables() []zcl.Traversal {
|
|
return Variables(e)
|
|
}
|
|
|
|
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)
|
|
}
|