-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokenizer.ts
61 lines (54 loc) · 1.18 KB
/
tokenizer.ts
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
import { TokenTypes, Token } from "../type/ast";
export function tokenizer(code: string) {
let tokens: Token[] = [];
let current = 0;
while (current < code.length) {
let char = code[current];
if (char === "(") {
tokens.push({
type: TokenTypes.paren,
value: char,
});
current++;
continue;
}
if (char === ")") {
tokens.push({
type: TokenTypes.paren,
value: char,
});
current++;
continue;
}
const spaceReg = /\s/;
if (spaceReg.test(char)) {
current++;
continue;
}
const strReg = /[a-z]/i;
if (strReg.test(char)) {
let values = "";
while (strReg.test(char) && current < code.length) {
values += char;
char = code[++current];
}
tokens.push({
type: TokenTypes.name,
value: values,
});
}
const numReg = /[0-9]/;
if (numReg.test(char)) {
let values = "";
while (numReg.test(char) && current < code.length) {
values += char;
char = code[++current];
}
tokens.push({
type: TokenTypes.number,
value: values,
});
}
}
return tokens;
}