Documentation ¶ Index ¶ func IsXName(s string) bool type Token type Type Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func IsXName ¶ func IsXName(s string) bool Types ¶ type Token ¶ type Token struct { Type Type Value string } type Type ¶ added in v0.0.2 type Type string const ( ILLEGAL Type = "ILLEGAL" EOF Type = "EOF" IDENT Type = "IDENT" STRING Type = "STRING" ASSIGN Type = "=" COMMA Type = "," SEMICOLON Type = ";" COLON Type = ":" ) Source Files ¶ View all Source files token.go x_name.go Click to show internal directories. Click to hide internal directories.