xgo/ast/node.go
2019-01-08 23:17:42 -08:00

11 lines
135 B
Go

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