xgo/ast/node.go

12 lines
135 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package ast
import (
"github.com/d5/tengo/scanner"
)
type Node interface {
Pos() scanner.Pos
End() scanner.Pos
String() string
}