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

// Expr represents an expression node in the AST.
type Expr interface {
	Node
	exprNode()
}