xgo/compiler/ast/expr.go
Daniel Kang b79fd4f7ef
Fix lint issues (#2)
* addressing golint issues

* fix all lint issues.
2019-01-14 22:24:33 -08:00

7 lines
105 B
Go

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