xgo/compiler/ast/expr.go

8 lines
105 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package ast
// Expr represents an expression node in the AST.
2019-01-09 10:17:42 +03:00
type Expr interface {
Node
exprNode()
}