-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlexer.dart
More file actions
223 lines (192 loc) · 4.09 KB
/
lexer.dart
File metadata and controls
223 lines (192 loc) · 4.09 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
enum TokenKind {
EOF,
varPrefix,
lefParent,
rightParent,
quote,
doubleQuote,
assign,
name,
print,
ignore,
}
bool debug = false;
debugLog(msg) {
if (debug) {
print(msg);
}
}
bool isVarPrefix(TokenKind kind) {
return kind == TokenKind.varPrefix;
}
bool isLeftParent(TokenKind kind) {
return kind == TokenKind.lefParent;
}
bool isRightParent(TokenKind kind) {
return kind == TokenKind.rightParent;
}
bool isQuote(TokenKind kind) {
return kind == TokenKind.quote;
}
bool isDoubleQuote(TokenKind kind) {
return kind == TokenKind.doubleQuote;
}
bool isAssign(TokenKind kind) {
return kind == TokenKind.assign;
}
bool isName(TokenKind kind) {
return kind == TokenKind.name;
}
bool isEof(TokenKind kind) {
return kind == TokenKind.EOF;
}
// final tokenEOF = -1;
// final varPrefix = 0; // '\$';
// final leftParent = 1; //'\(';
// final rightParent = 2; //'\)';
// final quote = 3; //'\'';
// final doubleQuote = 4; //'\"';
// final tokenName = 5; //'name'
// final tokenPrint = 6; // print statement
// final ignoreToken = 7; // ignore, may error occur
bool isWhiteSpace(String s) {
return (s == '\r' || s == '\n' || s == '\t' || s == ' ');
}
bool isNewLine(String s) {
return (s == '\r' || s == '\n');
}
bool isLetter(String s) {
bool r = true;
List<int> codeUnits = s.codeUnits;
int i = 0;
for (; i < codeUnits.length; i++) {
int unit = codeUnits[i];
if (!((unit >= 'A'.codeUnitAt(0) && unit <= 'Z'.codeUnitAt(0)) ||
(unit >= 'a'.codeUnitAt(0) && unit <= 'z'.codeUnitAt(0)))) {
debugLog('i :$unit, ${'z'.codeUnitAt(0)}');
r = false;
break;
}
}
debugLog('is letter: $r');
return r;
}
bool isKeyword(String word) {
List<String> keywords = ["print"];
return keywords.contains(word);
}
class Lexer {
String str;
int pos;
String tempToken;
int line;
int column;
Lexer(this.str) {
pos = 0;
line = 1;
column = 0;
}
void skipSpace() {
int length = str.length;
while (pos < length) {
if (!isWhiteSpace(str[pos])) {
return;
}
if (isNewLine(str[pos])) {
line++;
column = 0;
}
pos = pos + 1;
column += 1;
}
}
String scanName() {
int start = pos;
while (isLetter(str[pos])) {
pos = pos + 1;
}
String name = str.substring(start, pos);
debugLog('name: $name, start: $start, pos: $pos');
return name;
}
String scanString(TokenKind quote) {
int start = pos;
String quoteValue = '\'';
if (isDoubleQuote(quote)) {
quoteValue = '\"';
}
while (str[pos] != quoteValue) {
pos = pos + 1;
}
return str.substring(start, pos);
}
preScan() {
int currPos = pos;
int currLine = line;
int currCol = column;
TokenKind kind = nextToken();
pos = currPos;
line = currLine;
column = currCol;
return kind;
}
TokenKind nextToken() {
TokenKind kind = TokenKind.ignore;
String token;
skipSpace();
if (pos == str.length) {
return TokenKind.EOF;
}
String prefix = str[pos];
switch (prefix) {
case '\$':
kind = TokenKind.varPrefix;
token = prefix;
pos++;
column++;
break;
case '\(':
kind = TokenKind.lefParent;
token = prefix;
pos++;
column++;
break;
case '\)':
kind = TokenKind.rightParent;
token = prefix;
pos++;
column++;
break;
case '\'':
kind = TokenKind.quote;
token = prefix;
pos++;
column++;
break;
case '\"':
kind = TokenKind.doubleQuote;
token = prefix;
pos++;
column++;
break;
case '=':
kind = TokenKind.assign;
token = prefix;
pos++;
column++;
break;
}
debugLog('current token prefix $prefix');
if (isLetter(prefix)) {
token = scanName();
debugLog('current token $token');
if (isKeyword(token)) {
kind = TokenKind.print;
} else {
kind = TokenKind.name;
}
}
tempToken = token;
return kind;
}
}