12 lines
135 B
Go
12 lines
135 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"github.com/d5/tengo/scanner"
|
||
|
)
|
||
|
|
||
|
type Node interface {
|
||
|
Pos() scanner.Pos
|
||
|
End() scanner.Pos
|
||
|
String() string
|
||
|
}
|