summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/ast/stmt.go
blob: 6b26ba883b26bb70d1d97041ebf388e91017c349 (plain) (blame)
1
2
3
4
5
6
7
package ast

// Stmt represents a statement in the AST.
type Stmt interface {
	Node
	stmtNode()
}