forked from PostFixJS/PostFixJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lexer.js
306 lines (287 loc) · 8.01 KB
/
Lexer.js
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
class Lexer {
/**
* Create a new lexer instance.
* @param {object} options Options for the lexer
* @param {bool} options.emitComments True to emit tokens for comments, defaults to false
*/
constructor (options = {}) {
this.options = options
this.col = 0
this.row = 0
this.pos = 0
this.input = ''
this.peek = ' '
}
put (input) {
this.input += input
if (input.length > 0) {
this.empty = false
}
}
_readch () {
if (this.pos < this.input.length) {
this.peek = this.input[this.pos]
this.pos++
if (this.peek === '\n') {
this.row++
this.col = 0
} else if (this.peek === '\r') {
// don't emit \r, so that \r is not included in the token before the line break on Windows
return this._readch()
} else {
this.col++
}
return true
}
this.empty = true
this.peek = ' '
return false
}
* getTokens () {
while (!this.empty) {
if (this.deferredToken != null) {
yield this.deferredToken
this.deferredToken = null
}
// skip to the next symbol
while (!this.empty) {
this._readch()
if (' \t\r,'.indexOf(this.peek) >= 0) {
continue
}
if (this.peek === '#') { // comment
if (this.options.emitComments) {
const tokenLine = this.row
const tokenCol = this.col - 1
let token = '#'
this._readch()
token += this.peek
if (this.peek === '<') {
// block comment
let tokenEndLine
let tokenEndCol
let prev = this.peek
let levels = 1
while (this._readch()) {
tokenEndCol = this.col
tokenEndLine = this.row
token += this.peek
if (prev === '>' && this.peek === '#') {
levels--
if (levels === 0) {
this._readch()
break
} else if (this._readch()) {
token += this.peek
}
}
if (prev === '#' && this.peek === '<') {
if (this._readch()) {
token += this.peek
}
levels++
}
prev = this.peek
}
yield {
token,
tokenType: 'BLOCK_COMMENT',
col: tokenCol,
line: tokenLine,
endCol: tokenEndCol,
endLine: tokenEndLine
}
} else {
// line comment
while (this.peek !== '\n') {
if (!this._readch()) {
break
}
token += this.peek
}
yield {
token,
tokenType: 'LINE_COMMENT',
col: tokenCol,
line: tokenLine,
endCol: this.col,
endLine: tokenLine
}
}
} else {
this._readch()
if (this.peek === '<') {
// block comment
let prev = this.peek
let levels = 1
while (this._readch()) {
if (prev === '>' && this.peek === '#') {
this._readch()
levels--
if (levels === 0) {
break
}
}
if (prev === '#' && this.peek === '<') {
this._readch()
levels++
}
prev = this.peek
}
} else {
// line comment
while (this.peek !== '\n') {
if (!this._readch()) {
break
}
}
}
}
}
if (this.peek !== '\n') {
break
}
}
// this is where an actual token is recognized
const tokenLine = this.row
let tokenCol = this.col
let insideString = false
let maskNext = false
let token = ''
if ('{[()]}'.includes(this.peek)) {
yield {
token: this.peek,
tokenType: Lexer.getTokenType(this.peek),
col: tokenCol - 1,
line: tokenLine,
endCol: tokenCol,
endLine: tokenLine
}
continue
} else if (this.peek === '"') {
insideString = true
token += this.peek
this._readch()
} else if (this.peek === '.') {
this.deferredToken = {
token: 'get',
tokenType: Lexer.getTokenType('get'),
col: this.col - 1,
line: this.row,
endCol: this.col,
endLine: this.row,
generated: true,
generatedReason: 'DOT_SUGAR'
}
this._readch()
tokenCol = this.col
}
while (!this.empty) {
if (insideString) {
if (this.peek === '"' && !maskNext) {
token += this.peek
this._readch()
break
}
} else {
if (' \t,\n)]}([{'.indexOf(this.peek) >= 0) {
break
}
}
if (!maskNext) {
if (this.peek === '\\') {
maskNext = true
token += this.peek
this._readch()
continue
}
} else {
maskNext = false
}
token += this.peek
if (!this._readch()) {
break
}
}
if (token !== '') {
yield {
token,
tokenType: Lexer.getTokenType(token),
col: tokenCol - 1,
line: tokenLine,
endCol: tokenCol + token.length - 1,
endLine: tokenLine
}
// emit the deferred token here, otherwise it would get lost if the input is empty now
if (this.deferredToken != null) {
yield this.deferredToken
this.deferredToken = null
}
// if the next token is self-delimiting, there might not be whitespace between this token and the next token
// so it would be skipped in the next iteration; solution: emit that token here
if ('{[()]}'.includes(this.peek)) {
yield {
token: this.peek,
tokenType: Lexer.getTokenType(this.peek),
col: this.col - 1,
line: this.row,
endCol: this.col,
endLine: this.row
}
}
}
}
}
static getTokenType (token) {
switch (token) {
case '(':
return 'PARAM_LIST_START'
case ')':
return 'PARAM_LIST_END'
case '[':
return 'ARR_START'
case ']':
return 'ARR_END'
case '{':
return 'EXEARR_START'
case '}':
return 'EXEARR_END'
case '->':
return 'RIGHT_ARROW'
case 'true':
case 'false':
return 'BOOLEAN'
case 'nil':
return 'NIL'
}
// TODO how/where to handle .foo (currently handled by the lexer) and bar.!
if (!isNaN(token)) {
if (token.indexOf('.') >= 0 || token.indexOf('e-') >= 0) {
return 'FLOAT'
} else {
return 'INTEGER'
}
} else if (token.length >= 2 && token[0] === '"' && token[token.length - 1] === '"') {
return 'STRING'
} else if (token.length >= 2 && (token[0] === ':' || token[token.length - 1] === ':')) {
return 'SYMBOL'
} else if (token.length >= 2 && token[token.length - 1] === '!') {
return 'DEFINITION'
} else {
return 'REFERENCE'
}
}
/**
* Parse the given code and return an array of tokens.
* @param {string} code Code to parse
* @param {object} options Options for the lexer
* @param {bool} options.emitComments True to emit tokens for comments, defaults to false
* @returns {object[]} Tokens
*/
static parse (code, options = {}) {
const lexer = new Lexer(options)
lexer.put(code)
return Array.from(lexer.getTokens())
}
}
module.exports = Lexer