mirror of
https://github.com/hazemKrimi/jack-compiler.git
synced 2026-05-01 17:48:57 +00:00
18 lines
170 B
Go
18 lines
170 B
Go
package compiler
|
|
|
|
type TokenType int
|
|
|
|
const (
|
|
KEYWORD TokenType = iota
|
|
SYMBOL
|
|
INT_CONST
|
|
STR_CONST
|
|
IDENTIFIER
|
|
)
|
|
|
|
type Token struct {
|
|
Value string
|
|
Type TokenType
|
|
}
|
|
|