-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtoken.go
55 lines (46 loc) · 776 Bytes
/
token.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package goexp
type TokenType int
const (
Unknown TokenType = iota
EOF
LeftParen // (
RightParen // )
LeftBracket // [
RightBracket // ]
LeftBrace // {
RightBrace // }
Comma // ,
Period // .
Add // +
Sub // -
Mul // *
Div // /
Modulo // %
Power // **
And // &&
Or // ||
Not // !
Xor // xor
NotEqual // !=
Equal // ==
Greater // >
GreaterEqual // >=
Less // <
LessEqual // <=
Identifier // main
String // "abc"
Integer // 123
Float // 12.34
True
False
Nil
)
type Token struct {
Type TokenType
Lexeme string
Literal interface{}
Pos int
}
// func (t Token) String() string {
// return fmt.Sprintf("%+v", t)
// }