forked from robertkrimen/otto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmpl_parse.go
644 lines (551 loc) · 14.7 KB
/
cmpl_parse.go
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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
package otto
import (
"fmt"
"github.com/kubeshark/otto/ast"
"github.com/kubeshark/otto/file"
"github.com/kubeshark/otto/token"
)
var (
trueLiteral = &nodeLiteral{value: boolValue(true)}
falseLiteral = &nodeLiteral{value: boolValue(false)}
nullLiteral = &nodeLiteral{value: nullValue}
emptyStatement = &nodeEmptyStatement{}
)
func (cmpl *compiler) parseExpression(expr ast.Expression) nodeExpression {
if expr == nil {
return nil
}
switch expr := expr.(type) {
case *ast.ArrayLiteral:
out := &nodeArrayLiteral{
value: make([]nodeExpression, len(expr.Value)),
}
for i, value := range expr.Value {
out.value[i] = cmpl.parseExpression(value)
}
return out
case *ast.AssignExpression:
return &nodeAssignExpression{
operator: expr.Operator,
left: cmpl.parseExpression(expr.Left),
right: cmpl.parseExpression(expr.Right),
}
case *ast.BinaryExpression:
return &nodeBinaryExpression{
operator: expr.Operator,
left: cmpl.parseExpression(expr.Left),
right: cmpl.parseExpression(expr.Right),
comparison: expr.Comparison,
}
case *ast.BooleanLiteral:
if expr.Value {
return trueLiteral
}
return falseLiteral
case *ast.BracketExpression:
return &nodeBracketExpression{
idx: expr.Left.Idx0(),
left: cmpl.parseExpression(expr.Left),
member: cmpl.parseExpression(expr.Member),
}
case *ast.CallExpression:
out := &nodeCallExpression{
callee: cmpl.parseExpression(expr.Callee),
argumentList: make([]nodeExpression, len(expr.ArgumentList)),
}
for i, value := range expr.ArgumentList {
out.argumentList[i] = cmpl.parseExpression(value)
}
return out
case *ast.ConditionalExpression:
return &nodeConditionalExpression{
test: cmpl.parseExpression(expr.Test),
consequent: cmpl.parseExpression(expr.Consequent),
alternate: cmpl.parseExpression(expr.Alternate),
}
case *ast.DotExpression:
return &nodeDotExpression{
idx: expr.Left.Idx0(),
left: cmpl.parseExpression(expr.Left),
identifier: expr.Identifier.Name,
}
case *ast.EmptyExpression:
return nil
case *ast.FunctionLiteral:
name := ""
if expr.Name != nil {
name = expr.Name.Name
}
out := &nodeFunctionLiteral{
name: name,
body: cmpl.parseStatement(expr.Body),
source: expr.Source,
file: cmpl.file,
}
if expr.ParameterList != nil {
list := expr.ParameterList.List
out.parameterList = make([]string, len(list))
for i, value := range list {
out.parameterList[i] = value.Name
}
}
for _, value := range expr.DeclarationList {
switch value := value.(type) {
case *ast.FunctionDeclaration:
out.functionList = append(out.functionList, cmpl.parseExpression(value.Function).(*nodeFunctionLiteral))
case *ast.VariableDeclaration:
for _, value := range value.List {
out.varList = append(out.varList, value.Name)
}
default:
panic(fmt.Sprintf("parse expression unknown function declaration type %T", value))
}
}
return out
case *ast.Identifier:
return &nodeIdentifier{
idx: expr.Idx,
name: expr.Name,
}
case *ast.NewExpression:
out := &nodeNewExpression{
callee: cmpl.parseExpression(expr.Callee),
argumentList: make([]nodeExpression, len(expr.ArgumentList)),
}
for i, value := range expr.ArgumentList {
out.argumentList[i] = cmpl.parseExpression(value)
}
return out
case *ast.NullLiteral:
return nullLiteral
case *ast.NumberLiteral:
return &nodeLiteral{
value: toValue(expr.Value),
}
case *ast.ObjectLiteral:
out := &nodeObjectLiteral{
value: make([]nodeProperty, len(expr.Value)),
}
for i, value := range expr.Value {
out.value[i] = nodeProperty{
key: value.Key,
kind: value.Kind,
value: cmpl.parseExpression(value.Value),
}
}
return out
case *ast.RegExpLiteral:
return &nodeRegExpLiteral{
flags: expr.Flags,
pattern: expr.Pattern,
}
case *ast.SequenceExpression:
out := &nodeSequenceExpression{
sequence: make([]nodeExpression, len(expr.Sequence)),
}
for i, value := range expr.Sequence {
out.sequence[i] = cmpl.parseExpression(value)
}
return out
case *ast.StringLiteral:
return &nodeLiteral{
value: stringValue(expr.Value),
}
case *ast.ThisExpression:
return &nodeThisExpression{}
case *ast.UnaryExpression:
return &nodeUnaryExpression{
operator: expr.Operator,
operand: cmpl.parseExpression(expr.Operand),
postfix: expr.Postfix,
}
case *ast.VariableExpression:
return &nodeVariableExpression{
idx: expr.Idx0(),
name: expr.Name,
initializer: cmpl.parseExpression(expr.Initializer),
}
default:
panic(fmt.Errorf("parse expression unknown node type %T", expr))
}
}
func (cmpl *compiler) parseStatement(stmt ast.Statement) nodeStatement {
if stmt == nil {
return nil
}
switch stmt := stmt.(type) {
case *ast.BlockStatement:
out := &nodeBlockStatement{
list: make([]nodeStatement, len(stmt.List)),
}
for i, value := range stmt.List {
out.list[i] = cmpl.parseStatement(value)
}
return out
case *ast.BranchStatement:
out := &nodeBranchStatement{
branch: stmt.Token,
}
if stmt.Label != nil {
out.label = stmt.Label.Name
}
return out
case *ast.DebuggerStatement:
return &nodeDebuggerStatement{}
case *ast.DoWhileStatement:
out := &nodeDoWhileStatement{
test: cmpl.parseExpression(stmt.Test),
}
body := cmpl.parseStatement(stmt.Body)
if block, ok := body.(*nodeBlockStatement); ok {
out.body = block.list
} else {
out.body = append(out.body, body)
}
return out
case *ast.EmptyStatement:
return emptyStatement
case *ast.ExpressionStatement:
return &nodeExpressionStatement{
expression: cmpl.parseExpression(stmt.Expression),
}
case *ast.ForInStatement:
out := &nodeForInStatement{
into: cmpl.parseExpression(stmt.Into),
source: cmpl.parseExpression(stmt.Source),
}
body := cmpl.parseStatement(stmt.Body)
if block, ok := body.(*nodeBlockStatement); ok {
out.body = block.list
} else {
out.body = append(out.body, body)
}
return out
case *ast.ForStatement:
out := &nodeForStatement{
initializer: cmpl.parseExpression(stmt.Initializer),
update: cmpl.parseExpression(stmt.Update),
test: cmpl.parseExpression(stmt.Test),
}
body := cmpl.parseStatement(stmt.Body)
if block, ok := body.(*nodeBlockStatement); ok {
out.body = block.list
} else {
out.body = append(out.body, body)
}
return out
case *ast.FunctionStatement:
return emptyStatement
case *ast.IfStatement:
return &nodeIfStatement{
test: cmpl.parseExpression(stmt.Test),
consequent: cmpl.parseStatement(stmt.Consequent),
alternate: cmpl.parseStatement(stmt.Alternate),
}
case *ast.LabelledStatement:
return &nodeLabelledStatement{
label: stmt.Label.Name,
statement: cmpl.parseStatement(stmt.Statement),
}
case *ast.ReturnStatement:
return &nodeReturnStatement{
argument: cmpl.parseExpression(stmt.Argument),
}
case *ast.SwitchStatement:
out := &nodeSwitchStatement{
discriminant: cmpl.parseExpression(stmt.Discriminant),
defaultIdx: stmt.Default,
body: make([]*nodeCaseStatement, len(stmt.Body)),
}
for i, clause := range stmt.Body {
out.body[i] = &nodeCaseStatement{
test: cmpl.parseExpression(clause.Test),
consequent: make([]nodeStatement, len(clause.Consequent)),
}
for j, value := range clause.Consequent {
out.body[i].consequent[j] = cmpl.parseStatement(value)
}
}
return out
case *ast.ThrowStatement:
return &nodeThrowStatement{
argument: cmpl.parseExpression(stmt.Argument),
}
case *ast.TryStatement:
out := &nodeTryStatement{
body: cmpl.parseStatement(stmt.Body),
finally: cmpl.parseStatement(stmt.Finally),
}
if stmt.Catch != nil {
out.catch = &nodeCatchStatement{
parameter: stmt.Catch.Parameter.Name,
body: cmpl.parseStatement(stmt.Catch.Body),
}
}
return out
case *ast.VariableStatement:
out := &nodeVariableStatement{
list: make([]nodeExpression, len(stmt.List)),
}
for i, value := range stmt.List {
out.list[i] = cmpl.parseExpression(value)
}
return out
case *ast.WhileStatement:
out := &nodeWhileStatement{
test: cmpl.parseExpression(stmt.Test),
}
body := cmpl.parseStatement(stmt.Body)
if block, ok := body.(*nodeBlockStatement); ok {
out.body = block.list
} else {
out.body = append(out.body, body)
}
return out
case *ast.WithStatement:
return &nodeWithStatement{
object: cmpl.parseExpression(stmt.Object),
body: cmpl.parseStatement(stmt.Body),
}
default:
panic(fmt.Sprintf("parse statement: unknown type %T", stmt))
}
}
func cmplParse(in *ast.Program) *nodeProgram {
cmpl := compiler{
program: in,
}
if cmpl.program != nil {
cmpl.file = cmpl.program.File
}
return cmpl.parse()
}
func (cmpl *compiler) parse() *nodeProgram {
out := &nodeProgram{
body: make([]nodeStatement, len(cmpl.program.Body)),
file: cmpl.program.File,
}
for i, value := range cmpl.program.Body {
out.body[i] = cmpl.parseStatement(value)
}
for _, value := range cmpl.program.DeclarationList {
switch value := value.(type) {
case *ast.FunctionDeclaration:
out.functionList = append(out.functionList, cmpl.parseExpression(value.Function).(*nodeFunctionLiteral))
case *ast.VariableDeclaration:
for _, value := range value.List {
out.varList = append(out.varList, value.Name)
}
default:
panic(fmt.Sprintf("Here be dragons: cmpl.parseProgram.DeclarationList(%T)", value))
}
}
return out
}
type nodeProgram struct {
body []nodeStatement
varList []string
functionList []*nodeFunctionLiteral
file *file.File
}
type node interface{}
type (
nodeExpression interface {
node
expressionNode()
}
nodeArrayLiteral struct {
value []nodeExpression
}
nodeAssignExpression struct {
operator token.Token
left nodeExpression
right nodeExpression
}
nodeBinaryExpression struct {
operator token.Token
left nodeExpression
right nodeExpression
comparison bool
}
nodeBracketExpression struct {
idx file.Idx
left nodeExpression
member nodeExpression
}
nodeCallExpression struct {
callee nodeExpression
argumentList []nodeExpression
}
nodeConditionalExpression struct {
test nodeExpression
consequent nodeExpression
alternate nodeExpression
}
nodeDotExpression struct {
idx file.Idx
left nodeExpression
identifier string
}
nodeFunctionLiteral struct {
name string
body nodeStatement
source string
parameterList []string
varList []string
functionList []*nodeFunctionLiteral
file *file.File
}
nodeIdentifier struct {
idx file.Idx
name string
}
nodeLiteral struct {
value Value
}
nodeNewExpression struct {
callee nodeExpression
argumentList []nodeExpression
}
nodeObjectLiteral struct {
value []nodeProperty
}
nodeProperty struct {
key string
kind string
value nodeExpression
}
nodeRegExpLiteral struct {
flags string
pattern string // Value?
}
nodeSequenceExpression struct {
sequence []nodeExpression
}
nodeThisExpression struct{}
nodeUnaryExpression struct {
operator token.Token
operand nodeExpression
postfix bool
}
nodeVariableExpression struct {
idx file.Idx
name string
initializer nodeExpression
}
)
type (
nodeStatement interface {
node
statementNode()
}
nodeBlockStatement struct {
list []nodeStatement
}
nodeBranchStatement struct {
branch token.Token
label string
}
nodeCaseStatement struct {
test nodeExpression
consequent []nodeStatement
}
nodeCatchStatement struct {
parameter string
body nodeStatement
}
nodeDebuggerStatement struct{}
nodeDoWhileStatement struct {
test nodeExpression
body []nodeStatement
}
nodeEmptyStatement struct{}
nodeExpressionStatement struct {
expression nodeExpression
}
nodeForInStatement struct {
into nodeExpression
source nodeExpression
body []nodeStatement
}
nodeForStatement struct {
initializer nodeExpression
update nodeExpression
test nodeExpression
body []nodeStatement
}
nodeIfStatement struct {
test nodeExpression
consequent nodeStatement
alternate nodeStatement
}
nodeLabelledStatement struct {
label string
statement nodeStatement
}
nodeReturnStatement struct {
argument nodeExpression
}
nodeSwitchStatement struct {
discriminant nodeExpression
defaultIdx int
body []*nodeCaseStatement
}
nodeThrowStatement struct {
argument nodeExpression
}
nodeTryStatement struct {
body nodeStatement
catch *nodeCatchStatement
finally nodeStatement
}
nodeVariableStatement struct {
list []nodeExpression
}
nodeWhileStatement struct {
test nodeExpression
body []nodeStatement
}
nodeWithStatement struct {
object nodeExpression
body nodeStatement
}
)
// expressionNode.
func (*nodeArrayLiteral) expressionNode() {}
func (*nodeAssignExpression) expressionNode() {}
func (*nodeBinaryExpression) expressionNode() {}
func (*nodeBracketExpression) expressionNode() {}
func (*nodeCallExpression) expressionNode() {}
func (*nodeConditionalExpression) expressionNode() {}
func (*nodeDotExpression) expressionNode() {}
func (*nodeFunctionLiteral) expressionNode() {}
func (*nodeIdentifier) expressionNode() {}
func (*nodeLiteral) expressionNode() {}
func (*nodeNewExpression) expressionNode() {}
func (*nodeObjectLiteral) expressionNode() {}
func (*nodeRegExpLiteral) expressionNode() {}
func (*nodeSequenceExpression) expressionNode() {}
func (*nodeThisExpression) expressionNode() {}
func (*nodeUnaryExpression) expressionNode() {}
func (*nodeVariableExpression) expressionNode() {}
// statementNode
func (*nodeBlockStatement) statementNode() {}
func (*nodeBranchStatement) statementNode() {}
func (*nodeCaseStatement) statementNode() {}
func (*nodeCatchStatement) statementNode() {}
func (*nodeDebuggerStatement) statementNode() {}
func (*nodeDoWhileStatement) statementNode() {}
func (*nodeEmptyStatement) statementNode() {}
func (*nodeExpressionStatement) statementNode() {}
func (*nodeForInStatement) statementNode() {}
func (*nodeForStatement) statementNode() {}
func (*nodeIfStatement) statementNode() {}
func (*nodeLabelledStatement) statementNode() {}
func (*nodeReturnStatement) statementNode() {}
func (*nodeSwitchStatement) statementNode() {}
func (*nodeThrowStatement) statementNode() {}
func (*nodeTryStatement) statementNode() {}
func (*nodeVariableStatement) statementNode() {}
func (*nodeWhileStatement) statementNode() {}
func (*nodeWithStatement) statementNode() {}