-
Notifications
You must be signed in to change notification settings - Fork 10
/
token.go
163 lines (135 loc) · 2.62 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Copyright 2016 Steven Oud. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be found
// in the LICENSE file.
package mathcat
// TokenType represents the type of token
type TokenType int
// Token is an entity in an expression
type Token struct {
Type TokenType
Value string
Pos int
}
// Tokens is a slice of pointers to a token
type Tokens []*Token
const (
Eol TokenType = iota // end of line
literalsBegin
Ident // x
Decimal // 3
Hex // 0xDEADBEEF
Binary // 0b10101101100
Octal // 0o666
literalsEnd
operatorsBegin
Add // +
Sub // -
Div // /
Mul // *
Pow // **
Rem // %
UnaryMin // -
bitwiseBegin
And // &
Or // |
Xor // ^
Lsh // <<
Rsh // >>
Not // ~
assignmentBegin
AndEq // &=
OrEq // |=
XorEq // ^=
LshEq // <<=
RshEq // >>=
bitwiseEnd
Eq // =
AddEq // +=
SubEq // -=
DivEq // /=
MulEq // *=
PowEq // **=
RemEq // %=
assignmentEnd
NotEq // !=
EqEq // ==
Gt // >
GtEq // >=
Lt // <
LtEq // <=
operatorsEnd
Lparen // (
Rparen // )
Comma // ,
)
var tokens = map[TokenType]string{
Eol: "end of line",
Ident: "identifier",
Decimal: "decimal number",
Hex: "hex number",
Binary: "binary number",
Octal: "octal number",
Add: "+",
Sub: "-",
Div: "/",
Mul: "*",
Pow: "**",
Rem: "%",
UnaryMin: "-",
And: "&",
Or: "|",
Xor: "^",
Lsh: "<<",
Rsh: ">>",
Not: "~",
Eq: "=",
AddEq: "+=",
SubEq: "-=",
DivEq: "/=",
MulEq: "*=",
PowEq: "**=",
RemEq: "%=",
AndEq: "&=",
OrEq: "|=",
XorEq: "^=",
LshEq: "<<=",
RshEq: ">>=",
NotEq: "!=",
EqEq: "==",
Gt: ">",
GtEq: ">=",
Lt: "<",
LtEq: "<=",
Lparen: "(",
Rparen: ")",
Comma: ",",
}
func (tok Token) String() string {
return tok.Value
}
func (t TokenType) String() string {
if tok, ok := tokens[t]; ok {
return tok
}
return "???"
}
// Is checks if the token is given token type
func (tok Token) Is(toktype TokenType) bool {
return tok.Type == toktype
}
// IsOperator checks if the token is an operator
func (tok Token) IsOperator() bool {
return tok.Type > operatorsBegin && tok.Type < operatorsEnd
}
// IsBitwise checks if the token type is a bitwise operator
func (tok Token) IsBitwise() bool {
return tok.Type > bitwiseBegin && tok.Type < bitwiseEnd
}
// IsLiteral checks if the token is a literal
func (tok Token) IsLiteral() bool {
return tok.Type > literalsBegin && tok.Type < literalsEnd
}
// IsAssignment checks if the token is an assignment operator
func (tok Token) IsAssignment() bool {
return tok.Type > assignmentBegin && tok.Type < assignmentEnd
}