diff options
Diffstat (limited to 'vendor/github.com/d5/tengo/compiler/ast/stmt.go')
-rw-r--r-- | vendor/github.com/d5/tengo/compiler/ast/stmt.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/d5/tengo/compiler/ast/stmt.go b/vendor/github.com/d5/tengo/compiler/ast/stmt.go new file mode 100644 index 00000000..6b26ba88 --- /dev/null +++ b/vendor/github.com/d5/tengo/compiler/ast/stmt.go @@ -0,0 +1,7 @@ +package ast + +// Stmt represents a statement in the AST. +type Stmt interface { + Node + stmtNode() +} |