-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.cr
236 lines (209 loc) · 4.95 KB
/
scanner.cr
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
alias LiteralObject = Bool | Char | Float64 | Int32 | Nil | String | DiabloCallable | DiabloInstance
enum TokenType
LeftParen
RightParen
LeftBrace
RightBrace
Comma
Dot
Minus
Plus
Semicolon
Slash
Star
Bang
BangEqual
Equal
EqualEqual
Greater
GreaterEqual
Less
LessEqual
Identifier
String
Number
And
Class
Else
False
Fun
For
If
Nil
Or
Print
Return
Super
This
True
Var
While
Eof
end
class Token
property type : TokenType
property lexeme : String
property literal : LiteralObject
property line : Int32
def initialize(@type, @lexeme, @literal, @line)
end
def to_s
return "#{@type} #{@lexeme} #{@literal}"
end
end
class Scanner
property source : String
def initialize(@source)
@start = 0
@current = 0
@line = 1
@tokens = [] of Token
@keywords = {
"and" => TokenType::And,
"class" => TokenType::Class,
"else" => TokenType::Else,
"false" => TokenType::False,
"for" => TokenType::For,
"fun" => TokenType::Fun,
"if" => TokenType::If,
"nil" => TokenType::Nil,
"or" => TokenType::Or,
"print" => TokenType::Print,
"return" => TokenType::Return,
"super" => TokenType::Super,
"this" => TokenType::This,
"true" => TokenType::True,
"var" => TokenType::Var,
"while" => TokenType::While
}
end
def is_at_end()
return @current >= @source.size
end
def scan_tokens()
while !is_at_end
@start = @current
scan_token()
end
@tokens.push(Token.new(TokenType::Eof, "", nil, @line))
return @tokens
end
def advance()
c = @source[@current]
@current += 1
return c
end
def add_token(type)
add_token(type, nil)
end
def add_token(type, literal)
text = @source[@start...@current]
@tokens.push(Token.new(type, text, literal, @line))
end
def scan_token()
c = advance()
case c
when '('
add_token(TokenType::LeftParen)
when ')'
add_token(TokenType::RightParen)
when '{'
add_token(TokenType::LeftBrace)
when '}'
add_token(TokenType::RightBrace)
when ','
add_token(TokenType::Comma)
when '.'
add_token(TokenType::Dot)
when '-'
add_token(TokenType::Minus)
when '+'
add_token(TokenType::Plus)
when ';'
add_token(TokenType::Semicolon)
when '*'
add_token(TokenType::Star)
when '!'
add_token(match('=') ? TokenType::BangEqual : TokenType::Bang)
when '='
add_token(match('=') ? TokenType::EqualEqual : TokenType::Equal)
when '<'
add_token(match('=') ? TokenType::LessEqual : TokenType::Less)
when '>'
add_token(match('=') ? TokenType::GreaterEqual : TokenType::Greater)
when '/'
if match('/')
while peek() != '\n' && !is_at_end()
advance()
end
else
add_token(TokenType::Slash)
end
when ' ', '\r', '\t'
when '\n'
@line += 1
when '"'
string()
else
if c.number?
number()
elsif c.letter?
identifier()
else
DiabloError.error(@line, "Unexpected character '#{c}'.")
DiabloError.set_error(true)
end
end
end
def peek()
return '\0' if is_at_end()
return @source[@current]
end
def peek_next()
return '\0' if @current + 1 >= @source.size
return @source[@current + 1]
end
def match(expected)
return false if is_at_end()
return false if @source[@current] != expected
@current += 1
return true
end
def string()
while peek() != '"' && !is_at_end()
@line += 1 if peek() == '\n'
advance()
end
if is_at_end()
DiabloError.error(@line, "Unterminated string")
DiabloError.set_error(true)
return
end
advance()
value = @source[@start+1...@current-1]
add_token(TokenType::String, value)
end
def number()
while peek().number?
advance()
end
if peek() == '.' && peek_next().number?
advance()
while peek().number?
advance()
end
end
add_token(TokenType::Number, @source[@start...@current].to_f)
end
def identifier()
while peek().alphanumeric?
advance()
end
text = @source[@start...@current]
type = @keywords.fetch(text, nil)
if type.nil?
type = TokenType::Identifier
end
add_token(type)
end
end