diff options
Diffstat (limited to 'vendor/github.com/d5/tengo/compiler/ast/expr.go')
-rw-r--r-- | vendor/github.com/d5/tengo/compiler/ast/expr.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/d5/tengo/compiler/ast/expr.go b/vendor/github.com/d5/tengo/compiler/ast/expr.go new file mode 100644 index 00000000..764bacec --- /dev/null +++ b/vendor/github.com/d5/tengo/compiler/ast/expr.go @@ -0,0 +1,7 @@ +package ast + +// Expr represents an expression node in the AST. +type Expr interface { + Node + exprNode() +} |