-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtokenizer.js
More file actions
357 lines (318 loc) · 6.96 KB
/
tokenizer.js
File metadata and controls
357 lines (318 loc) · 6.96 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// We start by tokenizing our input by declaring a function named tokenizer()
function tokenizer(input) {
// variable current will be our index counter
var current = 0;
// tokens will be holding all the tokens we found in our input
var tokens = [];
// some regex for later use
var LETTERS = /[a-zA-Z]/;
var NEWLINE = /\n/;
var BACKSLASH = /\\/;
var WHITESPACE = /\s/;
var NUMBERS = /[0-9]/;
// now we start looping through each character of our input
while(current < input.length) {
var char = input[current];
/* From here on, we just compare our current character against all the characters
thet we accept. If there is a match we add 1 to our current variable, push our
character as a token to our tokens[] array and continue our loop */
if (char === '=') {
tokens.push({
type: 'equal',
value: '='
});
current++;
continue;
}
if (char === '*') {
tokens.push({
type: 'star',
value: '*'
});
current++;
continue;
}
if (char === '#') {
tokens.push({
type: 'hash',
value: '#'
});
current++;
continue;
}
if (char === '!') {
tokens.push({
type: 'not',
value: '!'
});
current++;
continue;
}
if (char === '[' || char === ']') {
tokens.push({
type: 'bracket',
value: char
});
current++;
continue;
}
if (char === '-') {
tokens.push({
type: 'minus',
value: '-'
});
current++;
continue;
}
if (char === '+') {
tokens.push({
type: 'plus',
value: '+'
});
current++;
continue;
}
if (char === '/') {
// 1) one-line comments
if (input[++current] === '/') {
while (current < input.length && !NEWLINE.test(input[current])) {
current++;
}
}
// 2) multilne comments
else if (input[current] === '*') {
current++;
while (current < input.length) {
if (input[current] === '*' && input[++current] === '/') {
current++;
break;
}
current++;
}
}
// a single slash
else {
tokens.push({
type: 'forwardslash',
value: '/'
});
}
continue;
}
if (BACKSLASH.test(char)) {
tokens.push({
type: 'backslash',
value: '\\'
});
current++;
continue;
}
if (char === '?') {
tokens.push({
type: 'question',
value: '?'
});
current++;
continue;
}
if (char === '<') {
tokens.push({
type: 'less',
value: '<'
});
current++;
continue;
}
if (char === '>') {
tokens.push({
type: 'greater',
value: '>'
});
current++;
continue;
}
if (char === '|') {
tokens.push({
type: 'pipe',
value: '|'
});
current++;
continue;
}
if (char === '&') {
tokens.push({
type: 'and',
value: '&'
});
current++;
continue;
}
if (char === '%') {
tokens.push({
type: 'percent',
value: '%'
});
current++;
continue;
}
if (char === '$') {
tokens.push({
type: 'dollar',
value: '$'
});
current++;
continue;
}
if (char === '@') {
tokens.push({
type: 'at',
value: '@'
});
current++;
continue;
}
if (char === '^') {
tokens.push({
type: 'caret',
value: '^'
});
current++;
continue;
}
if (char === '~') {
tokens.push({
type: 'tilde',
value: '~'
});
current++;
continue;
}
if (char === '`') {
tokens.push({
type: 'grave',
value: '`'
});
current++;
continue;
}
if (char === '(' || char === ')') {
tokens.push({
type: 'paren',
value: char
});
current++;
continue;
}
if (char === ':') {
tokens.push({
type: 'colon',
value: ':'
});
current++;
continue;
}
if (char === '.') {
tokens.push({
type: 'dot',
value: '.'
});
current++;
continue;
}
if(char === ',') {
tokens.push({
type: 'comma',
value: ','
});
current++;
continue;
}
if (char === ';') {
tokens.push({
type: 'semi',
value: ';'
});
current++;
continue;
}
if (char === '{' || char === '}') {
tokens.push({
type: 'curly',
value: char
});
current++;
continue;
}
if(WHITESPACE.test(char) || NEWLINE.test(char)) {
current++;
continue;
}
/* If the character is a number, we need to check if the next character is also a number
in order to push them altogether as 1 number. i.e. if there is 762, we push "762" not "7","6","2" */
if(NUMBERS.test(char)) {
var value = '';
while(NUMBERS.test(char)) {
value += char;
char = input[++current];
}
tokens.push({
type: 'number',
value: value
});
continue;
}
/* while checking for LETTERS, we also check for NUMBERS and UNDERLINE
(i.e. imagine the input as s0m3_c00l_n4m3) or __my_joke_salary */
if(LETTERS.test(char) || char === '_') {
var value = char;
/* need to account for potential end-of-file :D */
if (++current < input.length) {
char = input[current];
/* also need to remember to take care of the last character in the buffer */
while((LETTERS.test(char) || NUMBERS.test(char) || char === '_') && (current+1 <= input.length)) {
value += char;
char = input[++current];
}
}
tokens.push({
type: 'name',
value: value
});
continue;
}
/* if the character is a sigle quote or a double quote, we will treat it as a string.
Until we haven't found the next double quote or single quote, we continue looping.
When found, then we push the whole value as a string. */
if(char === '\'') {
var value = '';
char = input[++current];
while(char !== '\''){
value += char;
char = input[++current];
}
char = input[++current];
tokens.push({
type: 'string',
value: value
});
continue;
}
if(char === '"') {
var value = '';
char = input[++current];
while(char !== '"'){
value += char;
char = input[++current];
}
char = input[++current];
tokens.push({
type: 'string',
value: value
});
continue;
}
/*whatever else, we don't know jack! */
throw new TypeError('Type Error! Unrecognized Character: ' + char);
}
return tokens;
}