forked from PostFixJS/PostFixJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLexer.test.js
More file actions
300 lines (282 loc) · 5.63 KB
/
Lexer.test.js
File metadata and controls
300 lines (282 loc) · 5.63 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
import test from 'ava'
import Lexer from './Lexer'
test('The lexer Lexer.parses PostFix code', t => {
const tokens = Lexer.parse('2 21 multiply')
t.deepEqual(tokens[0], {
token: '2',
tokenType: 'INTEGER',
line: 0,
col: 0,
endLine: 0,
endCol: 1
})
})
test('The lexer handles comments', t => {
let tokens = Lexer.parse('# this is a comment')
t.is(tokens.length, 0)
tokens = Lexer.parse('42 # this is a comment')
t.deepEqual(tokens, [{
token: '42',
tokenType: 'INTEGER',
line: 0,
col: 0,
endLine: 0,
endCol: 2
}])
})
test('The lexer gets the line after multiline comments right', t => {
const tokens = Lexer.parse(`
#<
This multi-line comment should be ignored
>#
test`)
t.deepEqual(tokens, [{
token: 'test',
tokenType: 'REFERENCE',
line: 4,
col: 0,
endLine: 4,
endCol: 4
}])
})
test('The lexer handles nested multiline comments correctly', t => {
t.deepEqual(Lexer.parse(`
#< comment
with multiple lines #< nested multiline comment >#
# nested single line comment
># test`, { emitComments: true }), [{
line: 1,
col: 2,
endCol: 4,
endLine: 4,
token: `#< comment
with multiple lines #< nested multiline comment >#
# nested single line comment
>#`,
tokenType: 'BLOCK_COMMENT'
}, {
token: 'test',
tokenType: 'REFERENCE',
line: 4,
col: 5,
endLine: 4,
endCol: 9
}])
})
test('The lexer inserts a get token when using the . operator', t => {
const tokens = Lexer.parse('object .property')
t.deepEqual(tokens, [{
token: 'object',
tokenType: 'REFERENCE',
line: 0,
col: 0,
endLine: 0,
endCol: 6
}, {
token: 'property',
tokenType: 'REFERENCE',
line: 0,
col: 8,
endLine: 0,
endCol: 16
}, {
token: 'get',
tokenType: 'REFERENCE',
line: 0,
col: 7,
endLine: 0,
endCol: 8,
generated: true,
generatedReason: 'DOT_SUGAR'
}])
})
test('The lexer handles escaped quotes properly', t => {
const tokens = Lexer.parse('"hello \\"world\\""')
t.deepEqual(tokens, [{
token: '"hello \\"world\\""',
tokenType: 'STRING',
col: 0,
line: 0,
endCol: 17,
endLine: 0
}])
})
test('Brackets are self-delimiting tokens', t => {
t.deepEqual(Lexer.parse('[42]'), [{
token: '[',
tokenType: 'ARR_START',
col: 0,
line: 0,
endCol: 1,
endLine: 0
}, {
token: '42',
tokenType: 'INTEGER',
col: 1,
line: 0,
endCol: 3,
endLine: 0
}, {
token: ']',
tokenType: 'ARR_END',
col: 3,
line: 0,
endCol: 4,
endLine: 0
}])
t.deepEqual(Lexer.parse('( 42)'), [{
token: '(',
tokenType: 'PARAM_LIST_START',
col: 0,
line: 0,
endCol: 1,
endLine: 0
}, {
token: '42',
tokenType: 'INTEGER',
col: 2,
line: 0,
endCol: 4,
endLine: 0
}, {
token: ')',
tokenType: 'PARAM_LIST_END',
col: 4,
line: 0,
endCol: 5,
endLine: 0
}])
t.deepEqual(Lexer.parse('{42 }'), [{
token: '{',
tokenType: 'EXEARR_START',
col: 0,
line: 0,
endCol: 1,
endLine: 0
}, {
token: '42',
tokenType: 'INTEGER',
col: 1,
line: 0,
endCol: 3,
endLine: 0
}, {
token: '}',
tokenType: 'EXEARR_END',
col: 4,
line: 0,
endCol: 5,
endLine: 0
}])
})
test('The lexer parses scientific notation', async (t) => {
t.deepEqual(Lexer.parse('7e-8'), [{
token: '7e-8',
tokenType: 'FLOAT',
col: 0,
line: 0,
endCol: 4,
endLine: 0
}])
t.deepEqual(Lexer.parse('7e+8'), [{
token: '7e+8',
tokenType: 'INTEGER',
col: 0,
line: 0,
endCol: 4,
endLine: 0
}])
t.deepEqual(Lexer.parse('7e8'), [{
token: '7e8',
tokenType: 'INTEGER',
col: 0,
line: 0,
endCol: 3,
endLine: 0
}])
})
test('The lexer emits tokens for line comments when emitComments is true', async (t) => {
t.deepEqual(Lexer.parse('42 # answer to all questions', { emitComments: true }), [{
token: '42',
tokenType: 'INTEGER',
col: 0,
line: 0,
endCol: 2,
endLine: 0
}, {
token: '# answer to all questions',
tokenType: 'LINE_COMMENT',
col: 3,
line: 0,
endCol: 28,
endLine: 0
}])
})
test('The lexer emits tokens for block comments when emitComments is true', async (t) => {
t.deepEqual(Lexer.parse('42 #< this is a\nmulti-line\n#< nested >#\nblock comment >#', { emitComments: true }), [{
token: '42',
tokenType: 'INTEGER',
col: 0,
line: 0,
endCol: 2,
endLine: 0
}, {
token: '#< this is a\nmulti-line\n#< nested >#\nblock comment >#',
tokenType: 'BLOCK_COMMENT',
col: 3,
line: 0,
endCol: 16,
endLine: 3
}])
})
test('The lexer emitted block comment tokens end where the comment ends', async (t) => {
t.deepEqual(Lexer.parse('\n #< test ># \n', { emitComments: true })[0], {
token: '#< test >#',
tokenType: 'BLOCK_COMMENT',
col: 1,
line: 1,
endCol: 11,
endLine: 1
})
})
test('The lexer parses nil properly', async (t) => {
t.deepEqual(Lexer.parse('nil')[0], {
token: 'nil',
tokenType: 'NIL',
col: 0,
line: 0,
endCol: 3,
endLine: 0
})
})
test('The lexer trims Windows line breaks', async (t) => {
t.deepEqual(Lexer.parse('1 2 +\r\ntest'), [{
token: '1',
tokenType: 'INTEGER',
col: 0,
line: 0,
endCol: 1,
endLine: 0
}, {
token: '2',
tokenType: 'INTEGER',
col: 2,
line: 0,
endCol: 3,
endLine: 0
}, {
token: '+',
tokenType: 'REFERENCE',
col: 4,
line: 0,
endCol: 5,
endLine: 0
}, {
token: 'test',
tokenType: 'REFERENCE',
col: 0,
line: 1,
endCol: 4,
endLine: 1
}])
})