Configuration file syntax and parsing for golang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
266 B

package token
import "fmt"
type Token struct {
ID TokenID
Literal string
Line int
Column int
}
func (this Token) String() string {
return fmt.Sprintf(
"ID<%s> Literal<%s> Line<%s> Column<%s>",
this.ID, this.Literal, this.Line, this.Column,
)
}