mirror of https://github.com/tidwall/tile38.git
23 lines
272 B
Go
23 lines
272 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
type Position struct {
|
||
|
Source string
|
||
|
Line int
|
||
|
Column int
|
||
|
}
|
||
|
|
||
|
type Token struct {
|
||
|
Type int
|
||
|
Name string
|
||
|
Str string
|
||
|
Pos Position
|
||
|
}
|
||
|
|
||
|
func (self *Token) String() string {
|
||
|
return fmt.Sprintf("<type:%v, str:%v>", self.Name, self.Str)
|
||
|
}
|