xgo/compiler/ast/node.go
2019-01-11 02:27:28 -08:00

9 lines
136 B
Go

package ast
import "github.com/d5/tengo/compiler/source"
type Node interface {
Pos() source.Pos
End() source.Pos
String() string
}