-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathparser.lua
More file actions
607 lines (559 loc) · 17.3 KB
/
parser.lua
File metadata and controls
607 lines (559 loc) · 17.3 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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
local operator = require("sci-lang.operator")
local LJ_52 = false
local EndOfBlock = { TK_else = true, TK_elseif = true, TK_end = true, TK_until = true, TK_eof = true }
local is_algebra_map = {
BinaryAlgebraExpression = true,
UnaryAlgebraExpression = true,
IndexAlgebraExpression = true,
}
local function is_algebra(node)
return is_algebra_map[node.kind]
end
local function err_syntax(ls, em)
ls:error(ls.token, em)
end
local function err_token(ls, token)
ls:error(ls.token, "'%s' expected", ls.token2str(token))
end
local function checkcond(ls, cond, em)
if not cond then err_syntax(ls, em) end
end
local function lex_opt(ls, tok)
if ls.token == tok then
ls:next()
return true
end
return false
end
local function lex_check(ls, tok)
if ls.token ~= tok then err_token(ls, tok) end
ls:next()
end
local function lex_match(ls, what, who, line)
if not lex_opt(ls, what) then
if line == ls.linenumber then
err_token(ls, what)
else
local token2str = ls.token2str
ls:error(ls.token, "%s expected (to close %s at line %d)", token2str(what), token2str(who), line)
end
end
end
local function lex_str(ls)
if ls.token ~= 'TK_name' and (LJ_52 or ls.token ~= 'TK_goto') then
err_token(ls, 'TK_name')
end
local s = ls.tokenval
ls:next()
return s
end
local expr_primary, expr, expr_unop, expr_binop, expr_simple
local expr_list, expr_table
local parse_body, parse_block, parse_args
local function var_lookup(ast, ls)
local name = lex_str(ls)
return ast:identifier(name)
end
local function expr_field(ast, ls, v)
ls:next() -- Skip dot or colon.
local key = lex_str(ls)
return ast:expr_property(v, key)
end
local function expr_bracket(ast, ls, accept_empty)
ls:next() -- Skip '['.
local v
if accept_empty and lex_opt(ls, ']') then
v = nil
else
v = expr(ast, ls)
lex_check(ls, ']')
end
return v
end
function expr_table(ast, ls)
local line = ls.linenumber
local kvs = {}
lex_check(ls, '{')
while ls.token ~= '}' do
local key
if ls.token == '[' then
key = expr_bracket(ast, ls)
lex_check(ls, '=')
elseif (ls.token == 'TK_name' or (not LJ_52 and ls.token == 'TK_goto')) and ls:lookahead() == '=' then
local name = lex_str(ls)
key = ast:literal(name)
lex_check(ls, '=')
end
local val = expr(ast, ls)
kvs[#kvs + 1] = { val, key } -- "key" can be nil.
if not lex_opt(ls, ',') and not lex_opt(ls, ';') then break end
end
lex_match(ls, '}', '{', line)
return ast:expr_table(kvs, line)
end
function expr_simple(ast, ls)
local tk, val = ls.token, ls.tokenval
local e
if tk == 'TK_number' then
e = ast:literal(val)
elseif tk == 'TK_string' then
e = ast:literal(val)
elseif tk == 'TK_nil' then
e = ast:literal(nil)
elseif tk == 'TK_true' then
e = ast:literal(true)
elseif tk == 'TK_false' then
e = ast:literal(false)
elseif tk == 'TK_dots' then
if not ls.fs.varargs then
err_syntax(ls, "cannot use \"...\" outside a vararg function")
end
e = ast:expr_vararg()
elseif tk == '{' then
return expr_table(ast, ls)
elseif tk == 'TK_function' then
ls:next()
local args, body, proto = parse_body(ast, ls, ls.linenumber, false)
return ast:expr_function(args, body, proto)
else
return expr_primary(ast, ls)
end
ls:next()
return e
end
function expr_list(ast, ls)
local exps = { }
exps[1] = expr(ast, ls)
while lex_opt(ls, ',') do
exps[#exps + 1] = expr(ast, ls)
end
local n = #exps
if n > 0 then
exps[n] = ast:set_expr_last(exps[n])
end
return exps
end
function expr_unop(ast, ls)
local tk = ls.token
if tk == 'TK_not' or tk == '-' or tk == '#' then
local line = ls.linenumber
ls:next()
local op = ls.token2str(tk)
local v = expr_binop(ast, ls, operator.unary_priority(op))
if is_algebra(v) then
assert(op == '-', 'not yet implemented')
return ast:expr_algebra_unop(op, v, line)
else
return ast:expr_unop(op, v, line)
end
else
local exp = expr_simple(ast, ls)
if lex_opt(ls, '`') then
local line = ls.linenumber
exp = ast:expr_algebra_unop('`', exp, line)
end
return exp
end
end
-- Parse binary expressions with priority higher than the limit.
function expr_binop(ast, ls, limit)
local v = expr_unop(ast, ls)
local op = ls.token2str(ls.token)
while operator.is_binop(op) and operator.left_priority(op) > limit do
local line = ls.linenumber
ls:next()
local v2, nextop = expr_binop(ast, ls, operator.right_priority(op))
if is_algebra(v) or is_algebra(v2) then
v = ast:expr_algebra_binop(op, v, v2, line)
else
v = ast:expr_binop(op, v, v2, line)
end
op = nextop
end
return v, op
end
function expr(ast, ls)
return expr_binop(ast, ls, 0) -- Priority 0: parse whole expression.
end
-- Parse primary expression.
function expr_primary(ast, ls)
local v, vk
-- Parse prefix expression.
if ls.token == '(' then
local line = ls.linenumber
ls:next()
vk, v = 'expr', ast:expr_brackets(expr(ast, ls))
lex_match(ls, ')', '(', line)
elseif ls.token == 'TK_name' or (not LJ_52 and ls.token == 'TK_goto') then
vk, v = 'var', var_lookup(ast, ls)
else
err_syntax(ls, "unexpected symbol")
end
while true do -- Parse multiple expression suffixes.
local line = ls.linenumber
if ls.token == '.' then
vk, v = 'indexed', expr_field(ast, ls, v)
elseif ls.token == '[' then
local key = expr_bracket(ast, ls, true)
if key then
vk, v = 'indexed', ast:expr_index(v, key)
else
vk, v = 'indexed', ast:expr_algebra_index(v)
end
elseif ls.token == ':' then
ls:next()
local key = lex_str(ls)
local args = parse_args(ast, ls)
vk, v = 'call', ast:expr_method_call(v, key, args, line)
elseif ls.token == '(' or ls.token == 'TK_string' or ls.token == '{' then
local args = parse_args(ast, ls)
vk, v = 'call', ast:expr_function_call(v, args, line)
else
break
end
end
return v, vk
end
-- Parse statements ----------------------------------------------------
-- Parse 'return' statement.
local function parse_return(ast, ls, line)
ls:next() -- Skip 'return'.
ls.fs.has_return = true
local exps
if EndOfBlock[ls.token] or ls.token == ';' then -- Base return.
exps = { }
else -- Return with one or more values.
exps = expr_list(ast, ls)
end
return ast:return_stmt(exps, line)
end
-- Parse numeric 'for'.
local function parse_for_num(ast, ls, varname, line)
lex_check(ls, '=')
local init = expr(ast, ls)
lex_check(ls, ',')
local last = expr(ast, ls)
local step
if lex_opt(ls, ',') then
step = expr(ast, ls)
else
step = ast:literal(1)
end
lex_check(ls, 'TK_do')
local body = parse_block(ast, ls, line)
local var = ast:identifier(varname)
return ast:for_stmt(var, init, last, step, body, line, ls.linenumber)
end
-- Parse 'for' iterator.
local function parse_for_iter(ast, ls, indexname)
local vars = { ast:identifier(indexname) }
while lex_opt(ls, ',') do
vars[#vars + 1] = ast:identifier(lex_str(ls))
end
lex_check(ls, 'TK_in')
local line = ls.linenumber
local exps = expr_list(ast, ls)
lex_check(ls, 'TK_do')
local body = parse_block(ast, ls, line)
return ast:for_iter_stmt(vars, exps, body, line, ls.linenumber)
end
-- Parse 'for' statement.
local function parse_for(ast, ls, line)
ls:next() -- Skip 'for'.
local varname = lex_str(ls) -- Get first variable name.
local stmt
if ls.token == '=' then
stmt = parse_for_num(ast, ls, varname, line)
elseif ls.token == ',' or ls.token == 'TK_in' then
stmt = parse_for_iter(ast, ls, varname)
else
err_syntax(ls, "'=' or 'in' expected")
end
lex_match(ls, 'TK_end', 'TK_for', line)
return stmt
end
local function parse_repeat(ast, ls, line)
ast:fscope_begin()
ls:next() -- Skip 'repeat'.
local body = parse_block(ast, ls)
local lastline = ls.linenumber
lex_match(ls, 'TK_until', 'TK_repeat', line)
local cond = expr(ast, ls) -- Parse condition.
ast:fscope_end()
return ast:repeat_stmt(cond, body, line, lastline)
end
-- Parse function argument list.
function parse_args(ast, ls)
local line = ls.linenumber
local args
if ls.token == '(' then
if not LJ_52 and line ~= ls.lastline then
err_syntax(ls, "ambiguous syntax (function call x new statement)")
end
ls:next()
if ls.token ~= ')' then -- Not f().
args = expr_list(ast, ls)
else
args = { }
end
lex_match(ls, ')', '(', line)
elseif ls.token == '{' then
local a = expr_table(ast, ls)
args = { a }
elseif ls.token == 'TK_string' then
local a = ls.tokenval
ls:next()
args = { ast:literal(a) }
else
err_syntax(ls, "function arguments expected")
end
return args
end
local function parse_assignment(ast, ls, vlist, var, vk)
local line = ls.linenumber
checkcond(ls, vk == 'var' or vk == 'indexed', 'syntax error')
vlist[#vlist+1] = var
if lex_opt(ls, ',') then
local n_var, n_vk = expr_primary(ast, ls)
return parse_assignment(ast, ls, vlist, n_var, n_vk)
else -- Parse RHS.
lex_check(ls, '=')
local exps = expr_list(ast, ls)
local algebra = false
for i=1,#vlist do
algebra = algebra or is_algebra(vlist[i])
end
if algebra then
assert(#vlist == 1, 'not yet implemented')
return ast:assignment_algebra_expr(vlist, exps, line)
else
return ast:assignment_expr(vlist, exps, line)
end
end
end
local function parse_call_assign(ast, ls)
local var, vk = expr_primary(ast, ls)
if vk == 'call' then
return ast:new_statement_expr(var, ls.linenumber)
else
local vlist = { }
return parse_assignment(ast, ls, vlist, var, vk)
end
end
-- Parse 'local' statement.
local function parse_local(ast, ls)
local line = ls.linenumber
if lex_opt(ls, 'TK_function') then -- Local function declaration.
local name = lex_str(ls)
local args, body, proto = parse_body(ast, ls, line, false)
return ast:local_function_decl(name, args, body, proto)
else -- Local variable declaration.
local vl = { }
repeat -- Collect LHS.
vl[#vl+1] = lex_str(ls)
until not lex_opt(ls, ',')
local exps
if lex_opt(ls, '=') then -- Optional RHS.
exps = expr_list(ast, ls)
else
exps = { }
end
return ast:local_decl(vl, exps, line)
end
end
local function parse_func(ast, ls, line)
local needself = false
ls:next() -- Skip 'function'.
-- Parse function name.
local v = var_lookup(ast, ls)
while ls.token == '.' do -- Multiple dot-separated fields.
v = expr_field(ast, ls, v)
end
if ls.token == ':' then -- Optional colon to signify method call.
needself = true
v = expr_field(ast, ls, v)
end
local args, body, proto = parse_body(ast, ls, line, needself)
return ast:function_decl(v, args, body, proto)
end
local function parse_while(ast, ls, line)
ls:next() -- Skip 'while'.
local cond = expr(ast, ls)
ast:fscope_begin()
lex_check(ls, 'TK_do')
local body = parse_block(ast, ls)
local lastline = ls.linenumber
lex_match(ls, 'TK_end', 'TK_while', line)
ast:fscope_end()
return ast:while_stmt(cond, body, line, lastline)
end
local function parse_then(ast, ls, tests, line)
ls:next()
tests[#tests+1] = expr(ast, ls)
lex_check(ls, 'TK_then')
return parse_block(ast, ls, line)
end
local function parse_if(ast, ls, line)
local tests, blocks = { }, { }
blocks[1] = parse_then(ast, ls, tests, line)
while ls.token == 'TK_elseif' do
blocks[#blocks+1] = parse_then(ast, ls, tests, ls.linenumber)
end
local else_branch
if ls.token == 'TK_else' then
local eline = ls.linenumber
ls:next() -- Skip 'else'.
else_branch = parse_block(ast, ls, eline)
end
lex_match(ls, 'TK_end', 'TK_if', line)
return ast:if_stmt(tests, blocks, else_branch, line)
end
local function parse_label(ast, ls)
ls:next() -- Skip '::'.
local name = lex_str(ls)
lex_check(ls, 'TK_label')
-- Recursively parse trailing statements: labels and ';' (Lua 5.2 only).
while true do
if ls.token == 'TK_label' then
parse_label(ast, ls)
elseif LJ_52 and ls.token == ';' then
ls:next()
else
break
end
end
return ast:label_stmt(name, ls.linenumber)
end
local function parse_goto(ast, ls)
local line = ls.linenumber
local name = lex_str(ls)
return ast:goto_stmt(name, line)
end
-- Parse a statement. Returns the statement itself and a boolean that tells if it
-- must be the last one in a chunk.
local function parse_stmt(ast, ls)
local line = ls.linenumber
local stmt
if ls.token == 'TK_if' then
stmt = parse_if(ast, ls, line)
elseif ls.token == 'TK_while' then
stmt = parse_while(ast, ls, line)
elseif ls.token == 'TK_do' then
ls:next()
local body = parse_block(ast, ls)
local lastline = ls.linenumber
lex_match(ls, 'TK_end', 'TK_do', line)
stmt = ast:do_stmt(body, line, lastline)
elseif ls.token == 'TK_for' then
stmt = parse_for(ast, ls, line)
elseif ls.token == 'TK_repeat' then
stmt = parse_repeat(ast, ls, line)
elseif ls.token == 'TK_function' then
stmt = parse_func(ast, ls, line)
elseif ls.token == 'TK_local' then
ls:next()
stmt = parse_local(ast, ls, line)
elseif ls.token == 'TK_return' then
stmt = parse_return(ast, ls, line)
return stmt, true -- Must be last.
elseif ls.token == 'TK_break' then
ls:next()
stmt = ast:break_stmt(line)
return stmt, not LJ_52 -- Must be last in Lua 5.1.
elseif LJ_52 and ls.token == ';' then
ls:next()
return parse_stmt(ast, ls)
elseif ls.token == 'TK_label' then
stmt = parse_label(ast, ls)
elseif ls.token == 'TK_goto' then
if LJ_52 or ls:lookahead() == 'TK_name' then
ls:next()
stmt = parse_goto(ast, ls)
end
end
-- If here 'stmt' is "nil" then ls.token didn't match any of the previous rules.
-- Fall back to call/assign rule.
if not stmt then
stmt = parse_call_assign(ast, ls)
end
return stmt, false
end
local function parse_params(ast, ls, needself)
lex_check(ls, "(")
local args = { }
if needself then
args[1] = ast:var_declare("self")
end
if ls.token ~= ")" then
repeat
if ls.token == 'TK_name' or (not LJ_52 and ls.token == 'TK_goto') then
local name = lex_str(ls)
args[#args+1] = ast:var_declare(name)
elseif ls.token == 'TK_dots' then
ls:next()
ls.fs.varargs = true
args[#args + 1] = ast:expr_vararg()
break
else
err_syntax(ls, "<name> or \"...\" expected")
end
until not lex_opt(ls, ',')
end
lex_check(ls, ")")
return args
end
local function new_proto(ls, varargs)
return { varargs = varargs }
end
local function parse_block_stmts(ast, ls)
local firstline = ls.linenumber
local stmt, islast = nil, false
local body = { }
while not islast and not EndOfBlock[ls.token] do
stmt, islast = parse_stmt(ast, ls)
body[#body + 1] = stmt
lex_opt(ls, ';')
end
return body, firstline, ls.linenumber
end
local function parse_chunk(ast, ls)
local body, firstline, lastline = parse_block_stmts(ast, ls)
return ast:chunk(body, ls.chunkname, 0, lastline)
end
-- Parse body of a function.
function parse_body(ast, ls, line, needself)
local pfs = ls.fs
ls.fs = new_proto(ls, false)
ast:fscope_begin()
ls.fs.firstline = line
local args = parse_params(ast, ls, needself)
local body = parse_block(ast, ls)
ast:fscope_end()
local proto = ls.fs
if ls.token ~= 'TK_end' then
lex_match(ls, 'TK_end', 'TK_function', line)
end
ls.fs.lastline = ls.linenumber
ls:next()
ls.fs = pfs
return args, body, proto
end
function parse_block(ast, ls, firstline)
ast:fscope_begin()
local body = parse_block_stmts(ast, ls)
body.firstline, body.lastline = firstline, ls.linenumber
ast:fscope_end()
return body
end
local function parse(ast, ls)
ls:next()
ls.fs = new_proto(ls, true)
ast:fscope_begin()
local chunk = parse_chunk(ast, ls)
ast:fscope_end()
if ls.token ~= 'TK_eof' then
err_token(ls, 'TK_eof')
end
return chunk
end
return parse