-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathZeParser.js
executable file
·2204 lines (1980 loc) · 92.3 KB
/
ZeParser.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
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if (typeof exports !== 'undefined') {
var Tokenizer = require('./Tokenizer').Tokenizer;
exports.ZeParser = ZeParser;
}
/**
* This is my js Parser: Ze. It's actually the post-dev pre-cleanup version. Clearly.
* Some optimizations have been applied :)
* (c) Peter van der Zee, qfox.nl
* @param {String} inp Input
* @param {Tokenizer} tok
* @param {Array} stack The tokens will be put in this array. If you're looking for the AST, this would be it :)
*/
function ZeParser(inp, tok, stack, simple){
this.input = inp;
this.tokenizer = tok;
this.stack = stack;
this.stack.root = true;
this.scope = stack.scope = [{value:'this', isDeclared:true, isEcma:true, thisIsGlobal:true}]; // names of variables
this.scope.global = true;
this.statementLabels = [];
this.errorStack = [];
stack.scope = this.scope; // hook root
stack.labels = this.statementLabels;
this.regexLhsStart = ZeParser.regexLhsStart;
/*
this.regexStartKeyword = ZeParser.regexStartKeyword;
this.regexKeyword = ZeParser.regexKeyword;
this.regexStartReserved = ZeParser.regexStartReserved;
this.regexReserved = ZeParser.regexReserved;
*/
this.regexStartKeyOrReserved = ZeParser.regexStartKeyOrReserved;
this.hashStartKeyOrReserved = ZeParser.hashStartKeyOrReserved;
this.regexIsKeywordOrReserved = ZeParser.regexIsKeywordOrReserved;
this.regexAssignments = ZeParser.regexAssignments;
this.regexNonAssignmentBinaryExpressionOperators = ZeParser.regexNonAssignmentBinaryExpressionOperators;
this.regexUnaryKeywords = ZeParser.regexUnaryKeywords;
this.hashUnaryKeywordStart = ZeParser.hashUnaryKeywordStart;
this.regexUnaryOperators = ZeParser.regexUnaryOperators;
this.regexLiteralKeywords = ZeParser.regexLiteralKeywords;
this.testing = {'this':1,'null':1,'true':1,'false':1};
this.ast = !simple; ///#define FULL_AST
};
/**
* Returns just a stacked parse tree (regular array)
* @param {string} input
* @param {boolean} simple=false
* @return {Array}
*/
ZeParser.parse = function(input, simple){
var tok = new Tokenizer(input);
var stack = [];
try {
var parser = new ZeParser(input, tok, stack);
if (simple) parser.ast = false;
parser.parse();
return stack;
} catch (e) {
console.log("Parser has a bug for this input, please report it :)", e);
return null;
}
};
/**
* Returns a new parser instance with parse details for input
* @param {string} input
* @param {Object} options
* @property {boolean} [options.tagLiterals] Instructs the tokenizer to also parse tag literals
* @returns {ZeParser}
*/
ZeParser.createParser = function(input, options){
var tok = new Tokenizer(input, options);
var stack = [];
try {
var parser = new ZeParser(input, tok, stack, options);
parser.parse();
return parser;
} catch (e) {
console.log("Parser has a bug for this input, please report it :)", e);
return null;
}
};
ZeParser.prototype = {
input: null,
tokenizer: null,
stack: null,
scope: null,
statementLabels: null,
errorStack: null,
ast: null,
queryMethodExtension: false,
parse: function(match){
if (match) match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, this.stack); // meh
else match = this.tokenizer.storeCurrentAndFetchNextToken(false, null, this.stack, true); // initialization step, dont store the match (there isnt any!)
match = this.eatSourceElements(match, this.stack);
var cycled = false;
do {
if (match && match.name != 12/*eof*/) {
// if not already an error, insert an error before it
if (match.name != 14/*error*/) this.failignore('UnexpectedToken', match, this.stack);
// just parse the token as is and continue.
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, this.stack);
cycled = true;
}
// keep gobbling any errors...
} while (match && match.name == 14/*error*/);
// now try again (but only if we gobbled at least one token)...
if (cycled && match && match.name != 12/*eof*/) match = this.parse(match);
// pop the last token off the stack if it caused an error at eof
if (this.tokenizer.errorEscape) {
this.stack.push(this.tokenizer.errorEscape);
this.tokenizer.errorEscape = null;
}
return match;
},
eatSemiColon: function(match, stack){
//this.stats.eatSemiColon = (+//this.stats.eatSemiColon||0)+1;
if (match.value == ';') match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
else {
// try asi
// only if:
// - this token was preceeded by at least one newline (match.newline) or next token is }
// - this is EOF
// - prev token was one of return,continue,break,throw (restricted production), not checked here.
// the exceptions to this rule are
// - if the next line is a regex
// - the semi is part of the for-header.
// these exceptions are automatically caught by the way the parser is built
// not eof and just parsed semi or no newline preceeding and next isnt }
if (match.name != 12/*EOF*/ && (match.semi || (!match.newline && match.value != '}')) && !(match.newline && (match.value == '++' || match.value == '--'))) {
this.failignore('NoASI', match, stack);
} else {
// ASI
// (match is actually the match _after_ this asi, so the position of asi is match.start, not stop (!)
var asi = {start:match.start,stop:match.start,name:13/*ASI*/};
stack.push(asi);
// slip it in the stream, before the current match.
// for the other tokens see the tokenizer near the end of the main parsing function
this.tokenizer.addTokenToStreamBefore(asi, match);
}
}
match.semi = true;
return match;
},
/**
* Eat one or more "AssignmentExpression"s. May also eat a labeled statement if
* the parameters are set that way. This is the only way to linearly distinct between
* an expression-statement and a labeled-statement without double lookahead. (ok, maybe not "only")
* @param {boolean} mayParseLabeledStatementInstead=false If the first token is an identifier and the second a colon, accept this match as a labeled statement instead... Only true if the match in the parameter is an (unreserved) identifier (so no need to validate that further)
* @param {Object} match
* @param {Array} stack
* @param {boolean} onlyOne=false Only parse a AssignmentExpression
* @param {boolean} forHeader=false Do not allow the `in` operator
* @param {boolean} isBreakOrContinueArg=false The argument for break or continue is always a single identifier
* @return {Object}
*/
eatExpressions: function(mayParseLabeledStatementInstead, match, stack, onlyOne, forHeader, isBreakOrContinueArg){
if (this.ast) { //#ifdef FULL_AST
var pstack = stack;
stack = [];
stack.desc = 'expressions';
stack.nextBlack = match.tokposb;
pstack.push(stack);
var parsedExpressions = 0;
} //#endif
var first = true;
do {
var parsedNonAssignmentOperator = false; // once we parse a non-assignment, this expression can no longer parse an assignment
// TOFIX: can probably get the regex out somehow...
if (!first) {
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) match = this.failsafe('ExpectedAnotherExpressionComma', match);
}
if (this.ast) { //#ifdef FULL_AST
++parsedExpressions;
var astack = stack;
stack = [];
stack.desc = 'expression';
stack.nextBlack = match.tokposb;
astack.push(stack);
} //#endif
// start of expression is given: match
// it should indeed be a properly allowed lhs
// first eat all unary operators
// they can be added to the stack, but we need to ensure they have indeed a valid operator
var parseAnotherExpression = true;
while (parseAnotherExpression) { // keep parsing lhs+operator as long as there is an operator after the lhs.
if (this.ast) { //#ifdef FULL_AST
var estack = stack;
stack = [];
stack.desc = 'sub-expression';
stack.nextBlack = match.tokposb;
estack.push(stack);
var news = 0; // encountered new operators waiting for parenthesis
} //#endif
// start checking lhs
// if lhs is identifier (new/call expression), allow to parse an assignment operator next
// otherwise keep eating unary expressions and then any "value"
// after that search for a binary operator. if we only ate a new/call expression then
// also allow to eat assignments. repeat for the rhs.
var parsedUnaryOperator = false;
var isUnary = null;
while (
!isBreakOrContinueArg && // no unary for break/continue
(isUnary =
(match.value && this.hashUnaryKeywordStart[match.value[0]] && this.regexUnaryKeywords.test(match.value)) || // (match.value == 'delete' || match.value == 'void' || match.value == 'typeof' || match.value == 'new') ||
(match.name == 11/*PUNCTUATOR*/ && this.regexUnaryOperators.test(match.value))
)
) {
if (isUnary) match.isUnaryOp = true;
if (this.ast) { //#ifdef FULL_AST
// find parenthesis
if (match.value == 'new') ++news;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
// ensure that it is in fact a valid lhs-start. TAG is a custom extension for optional tag literal syntax support.
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) match = this.failsafe('ExpectedAnotherExpressionRhs', match);
// not allowed to parse assignment
parsedUnaryOperator = true;
}
// if we parsed any kind of unary operator, we cannot be parsing a labeled statement
if (parsedUnaryOperator) mayParseLabeledStatementInstead = false;
// so now we know match is a valid lhs-start and not a unary operator
// it must be a string, number, regex, identifier
// or the start of an object literal ({), array literal ([) or group operator (().
var acceptAssignment = false;
// take care of the "open" cases first (group, array, object)
if (match.value == '(') {
if (this.ast) { //#ifdef FULL_AST
var groupStack = stack;
stack = [];
stack.desc = 'grouped';
stack.nextBlack = match.tokposb;
groupStack.push(stack);
var lhp = match;
match.isGroupStart = true;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) match = this.failsafe('GroupingShouldStartWithExpression', match);
// keep parsing expressions as long as they are followed by a comma
match = this.eatExpressions(false, match, stack);
if (match.value != ')') match = this.failsafe('UnclosedGroupingOperator', match);
if (this.ast) { //#ifdef FULL_AST
match.twin = lhp;
lhp.twin = match;
match.isGroupStop = true;
if (stack[stack.length-1].desc == 'expressions') {
// create ref to this expression group to the opening paren
lhp.expressionArg = stack[stack.length-1];
}
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
if (this.ast) { //#ifdef FULL_AST
stack = groupStack;
} //#endif
// you can assign to group results. and as long as the group does not contain a comma (and valid ref), it will work too :)
acceptAssignment = true;
// there's an extra rule for [ namely that, it must start with an expression but after that, expressions are optional
} else if (match.value == '[') {
if (this.ast) { //#ifdef FULL_AST
stack.sub = 'array literal';
stack.hasArrayLiteral = true;
var lhsb = match;
match.isArrayLiteralStart = true;
if (!this.scope.arrays) this.scope.arrays = [];
match.arrayId = this.scope.arrays.length;
this.scope.arrays.push(match);
match.targetScope = this.scope;
} //#endif
// keep parsing expressions as long as they are followed by a comma
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
// arrays may start with "elided" commas
while (match.value == ',') match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
var foundAtLeastOneComma = true; // for entry in while
while (foundAtLeastOneComma && match.value != ']') {
foundAtLeastOneComma = false;
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value)) && match.name != 14/*error*/) match = this.failsafe('ArrayShouldStartWithExpression', match);
match = this.eatExpressions(false, match, stack, true);
while (match.value == ',') {
foundAtLeastOneComma = true;
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
}
if (match.value != ']') {
match = this.failsafe('UnclosedPropertyBracket', match);
}
if (this.ast) { //#ifdef FULL_AST
match.twin = lhsb;
lhsb.twin = match;
match.isArrayLiteralStop = true;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
while (match.value == '++' || match.value == '--') {
// gobble and ignore?
this.failignore('InvalidPostfixOperandArray', match, stack);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
// object literals need seperate handling...
} else if (match.value == '{') {
if (this.ast) { //#ifdef FULL_AST
stack.sub = 'object literal';
stack.hasObjectLiteral = true;
match.isObjectLiteralStart = true;
if (!this.scope.objects) this.scope.objects = [];
match.objectId = this.scope.objects.length;
this.scope.objects.push(match);
var targetObject = match;
match.targetScope = this.scope;
var lhc = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name == 12/*eof*/) {
match = this.failsafe('ObjectLiteralExpectsColonAfterName', match);
}
// ObjectLiteral
// PropertyNameAndValueList
while (match.value != '}' && match.name != 14/*error*/) { // will stop if next token is } or throw if not and no comma is found
// expecting a string, number, or identifier
//if (match.name != 5/*STRING_SINGLE*/ && match.name != 6/*STRING_DOUBLE*/ && match.name != 3/*NUMERIC_HEX*/ && match.name != 4/*NUMERIC_DEC*/ && match.name != 2/*IDENTIFIER*/) {
// TOFIX: more specific errors depending on type...
if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) {
match = this.failsafe('IllegalPropertyNameToken', match);
}
if (this.ast) { //#ifdef FULL_AST
var objLitStack = stack;
stack = [];
stack.desc = 'objlit pair';
stack.isObjectLiteralPair = true;
stack.nextBlack = match.tokposb;
objLitStack.push(stack);
var propNameStack = stack;
stack = [];
stack.desc = 'objlit pair name';
stack.nextBlack = match.tokposb;
propNameStack.push(stack);
propNameStack.sub = 'data';
var propName = match;
propName.isPropertyName = true;
} //#endif
var getset = match.value;
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (this.ast) { //#ifdef FULL_AST
stack = propNameStack;
} //#endif
// for get/set we parse a function-like definition. but only if it's immediately followed by an identifier (otherwise it'll just be the property 'get' or 'set')
if (getset == 'get') {
// "get" PropertyName "(" ")" "{" FunctionBody "}"
if (match.value == ':') {
if (this.ast) { //#ifdef FULL_AST
propName.isPropertyOf = targetObject;
} //#endif
match = this.eatObjectLiteralColonAndBody(match, stack);
} else {
if (this.ast) { //#ifdef FULL_AST
match.isPropertyOf = targetObject;
propNameStack.sub = 'getter';
propNameStack.isAccessor = true;
} //#endif
// if (match.name != 2/*IDENTIFIER*/ && match.name != 5/*STRING_SINGLE*/ && match.name != 6/*STRING_DOUBLE*/ && match.name != 3/*NUMERIC_HEX*/ && match.name != 4/*NUMERIC_DEC*/) {
if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) match = this.failsafe('IllegalGetterSetterNameToken', match, true);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.value != '(') match = this.failsafe('GetterSetterNameFollowedByOpenParen', match);
if (this.ast) { //#ifdef FULL_AST
var lhp = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.value != ')') match = this.failsafe('GetterHasNoArguments', match);
if (this.ast) { //#ifdef FULL_AST
match.twin = lhp;
lhp.twin = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
match = this.eatFunctionBody(match, stack);
}
} else if (getset == 'set') {
// "set" PropertyName "(" PropertySetParameterList ")" "{" FunctionBody "}"
if (match.value == ':') {
if (this.ast) { //#ifdef FULL_AST
propName.isPropertyOf = targetObject;
} //#endif
match = this.eatObjectLiteralColonAndBody(match, stack);
} else {
if (this.ast) { //#ifdef FULL_AST
match.isPropertyOf = targetObject;
propNameStack.sub = 'setter';
propNameStack.isAccessor = true;
} //#endif
if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) match = this.failsafe('IllegalGetterSetterNameToken', match);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.value != '(') match = this.failsafe('GetterSetterNameFollowedByOpenParen', match);
if (this.ast) { //#ifdef FULL_AST
var lhp = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name != 2/*IDENTIFIER*/) {
if (match.value == ')') match = this.failsafe('SettersMustHaveArgument', match);
else match = this.failsafe('IllegalSetterArgumentNameToken', match);
}
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.value != ')') {
if (match.value == ',') match = this.failsafe('SettersOnlyGetOneArgument', match);
else match = this.failsafe('SetterHeaderShouldHaveClosingParen', match);
}
if (this.ast) { //#ifdef FULL_AST
match.twin = lhp;
lhp.twin = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
match = this.eatFunctionBody(match, stack);
}
} else {
// PropertyName ":" AssignmentExpression
if (this.ast) { //#ifdef FULL_AST
propName.isPropertyOf = targetObject;
} //#endif
match = this.eatObjectLiteralColonAndBody(match, stack);
}
if (this.ast) { //#ifdef FULL_AST
stack = objLitStack;
} //#endif
// one trailing comma allowed
if (match.value == ',') {
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.value == ',') match = this.failsafe('IllegalDoubleCommaInObjectLiteral', match);
} else if (match.value != '}') match = this.failsafe('UnclosedObjectLiteral', match);
// either the next token is } and the loop breaks or
// the next token is the start of the next PropertyAssignment...
}
// closing curly
if (this.ast) { //#ifdef FULL_AST
match.twin = lhc;
lhc.twin = match;
match.isObjectLiteralStop = true;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // next may be div
while (match.value == '++' || match.value == '--') {
this.failignore('InvalidPostfixOperandObject', match, stack);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
} else if (match.value == 'function') { // function expression
if (this.ast) { //#ifdef FULL_AST
var oldstack = stack;
stack = [];
stack.desc = 'func expr';
stack.isFunction = true;
stack.nextBlack = match.tokposb;
if (!this.scope.functions) this.scope.functions = [];
match.functionId = this.scope.functions.length;
this.scope.functions.push(match);
oldstack.push(stack);
var oldscope = this.scope;
// add new scope
match.scope = stack.scope = this.scope = [
this.scope,
{value:'this', isDeclared:true, isEcma:true, functionStack: stack},
{value:'arguments', isDeclared:true, isEcma:true, varType:['Object']}
]; // add the current scope (to build chain up-down)
this.scope.upper = oldscope;
// ref to back to function that's the cause for this scope
this.scope.scopeFor = match;
match.targetScope = oldscope; // consistency
match.isFuncExprKeyword = true;
match.functionStack = stack;
} //#endif
var funcExprToken = match;
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (mayParseLabeledStatementInstead && match.value == ':') match = this.failsafe('LabelsMayNotBeReserved', match);
if (match.name == 2/*IDENTIFIER*/) {
funcExprToken.funcName = match;
match.meta = "func expr name";
match.varType = ['Function'];
match.functionStack = stack; // ref to the stack, in case we detect the var being a constructor
if (this.ast) { //#ifdef FULL_AST
// name is only available to inner scope
this.scope.push({value:match.value});
} //#endif
if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) match = this.failsafe('FunctionNameMustNotBeReserved', match);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
match = this.eatFunctionParametersAndBody(match, stack, true, funcExprToken); // first token after func-expr is div
while (match.value == '++' || match.value == '--') {
this.failignore('InvalidPostfixOperandFunction', match, stack);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
if (this.ast) { //#ifdef FULL_AST
// restore stack and scope
stack = oldstack;
this.scope = oldscope;
} //#endif
// this is the core (sub-)expression part:
} else if (match.name <= 6 || match.name == 15/*TAG*/) { // IDENTIFIER STRING_SINGLE STRING_DOUBLE NUMERIC_HEX NUMERIC_DEC REG_EX or (custom extension) TAG
// save it in case it turns out to be a label.
var possibleLabel = match;
// validate the identifier, if any
if (match.name == 2/*IDENTIFIER*/) {
if (
// this, null, true, false are actually allowed here
!this.regexLiteralKeywords.test(match.value) &&
// other reserved words are not
this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)
) {
// if break/continue, we skipped the unary operator check so throw the proper error here
if (isBreakOrContinueArg) {
this.failignore('BreakOrContinueArgMustBeJustIdentifier', match, stack);
} else if (match.value == 'else') {
this.failignore('DidNotExpectElseHere', match, stack);
} else {
//if (mayParseLabeledStatementInstead) {new ZeParser.Error('LabelsMayNotBeReserved', match);
// TOFIX: lookahead to see if colon is following. throw label error instead if that's the case
// any forbidden keyword at this point is likely to be a statement start.
// its likely that the parser will take a while to recover from this point...
this.failignore('UnexpectedToken', match, stack);
// TOFIX: maybe i should just return at this point. cut my losses and hope for the best.
}
}
// only accept assignments after a member expression (identifier or ending with a [] suffix)
acceptAssignment = true;
} else if (isBreakOrContinueArg) {
match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
}
// the current match is the lead value being queried. tag it that way
if (this.ast) { //#ifdef FULL_AST
// dont mark labels
if (!isBreakOrContinueArg) {
match.meta = 'lead value';
match.leadValue = true;
}
} //#endif
// ok. gobble it.
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // division allowed
// now check for labeled statement (if mayParseLabeledStatementInstead then the first token for this expression must be an (unreserved) identifier)
if (mayParseLabeledStatementInstead && match.value == ':') {
if (possibleLabel.name != 2/*IDENTIFIER*/) {
// label was not an identifier
// TOFIX: this colon might be a different type of error... more analysis required
this.failignore('LabelsMayOnlyBeIdentifiers', match, stack);
}
mayParseLabeledStatementInstead = true; // mark label parsed (TOFIX:speed?)
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
possibleLabel.isLabel = true;
if (this.ast) { //#ifdef FULL_AST
delete possibleLabel.meta; // oh oops, it's not a lead value.
possibleLabel.isLabelDeclaration = true;
this.statementLabels.push(possibleLabel.value);
stack.desc = 'labeled statement';
} //#endif
var errorIdToReplace = this.errorStack.length;
// eat another statement now, its the body of the labeled statement (like if and while)
match = this.eatStatement(false, match, stack);
// if no statement was found, check here now and correct error
if (match.error && match.error.msg == ZeParser.Errors.UnableToParseStatement.msg) {
// replace with better error...
match.error = new ZeParser.Error('LabelRequiresStatement');
// also replace on stack
this.errorStack[errorIdToReplace] = match.error;
}
match.wasLabel = true;
return match;
}
mayParseLabeledStatementInstead = false;
} else if (match.value == '}') {
// ignore... its certainly the end of this expression, but maybe asi can be applied...
// it might also be an object literal expecting more, but that case has been covered else where.
// if it turns out the } is bad after all, .parse() will try to recover
} else if (match.name == 14/*error*/) {
do {
if (match.tokenError) {
var pe = new ZeParser.Error('TokenizerError', match);
pe.msg += ': '+match.error.msg;
this.errorStack.push(pe);
this.failSpecial({start:match.start,stop:match.start,name:14/*error*/,error:pe}, match, stack)
}
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
} while (match.name == 14/*error*/);
} else if (match.name == 12/*eof*/) {
// cant parse any further. you're probably just typing...
return match;
} else {
//if (!this.errorStack.length && match.name != 12/*eof*/) console.log(["unknown token", match, stack, Gui.escape(this.input)]);
this.failignore('UnknownToken', match, stack);
// we cant really ignore this. eat the token and try again. possibly you're just typing?
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
// search for "value" suffix. property access and call parens. (and query methods: {)
while (match.value == '.' || match.value == '[' || match.value == '(' || (this.queryMethodExtension && match.value == '{')) {
if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
if (match.value == '.') {
// property access. read in an IdentifierName (no keyword checks). allow assignments
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name != 2/*IDENTIFIER*/) this.failignore('PropertyNamesMayOnlyBeIdentifiers', match, stack);
if (this.ast) { //#ifdef FULL_AST
match.isPropertyName = true;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // may parse div
acceptAssignment = true;
} else if (match.value == '[') {
if (this.ast) { //#ifdef FULL_AST
var lhsb = match;
match.propertyAccessStart = true;
} //#endif
// property access, read expression list. allow assignments
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) {
if (match.value == ']') match = this.failsafe('SquareBracketsMayNotBeEmpty', match);
else match = this.failsafe('SquareBracketExpectsExpression', match);
}
match = this.eatExpressions(false, match, stack);
if (match.value != ']') match = this.failsafe('UnclosedSquareBrackets', match);
if (this.ast) { //#ifdef FULL_AST
match.twin = lhsb;
match.propertyAccessStop = true;
lhsb.twin = match;
if (stack[stack.length-1].desc == 'expressions') {
// create ref to this expression group to the opening bracket
lhsb.expressionArg = stack[stack.length-1];
}
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
acceptAssignment = true;
} else if (match.value == '(') {
if (this.ast) { //#ifdef FULL_AST
var lhp = match;
match.isCallExpressionStart = true;
if (news) {
match.parensBelongToNew = true;
--news;
}
} //#endif
// call expression, eat optional expression list, disallow assignments
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value)) match = this.eatExpressions(false, match, stack); // arguments are optional
if (match.value != ')') match = this.failsafe('UnclosedCallParens', match);
if (this.ast) { //#ifdef FULL_AST
match.twin = lhp;
lhp.twin = match;
match.isCallExpressionStop = true;
if (stack[stack.length-1].desc == 'expressions') {
// create ref to this expression group to the opening bracket
lhp.expressionArg = stack[stack.length-1];
}
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
acceptAssignment = false;
} else if (match.value == '{') {
if (!this.queryMethodExtension) {
console.warn("This should never happen. The `foo{.bar}` syntax is only parsed under a flag that's set to false... wtf?");
}
// this transforms the given match inline. so the match stays the same, it just
// has a new name and covers more input after this method finishes ;)
this.tokenizer.parseCurlyMethodLiteral(match);
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
} else {
throw "Coding error, should never happen";
}
}
// check for postfix operators ++ and --
// they are stronger than the + or - binary operators
// they can be applied to any lhs (even when it wouldnt make sense)
// if there was a newline, it should get an ASI
if ((match.value == '++' || match.value == '--') && !match.newline) {
if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // may parse div
}
if (this.ast) { //#ifdef FULL_AST
// restore "expression" stack
stack = estack;
} //#endif
// now see if there is an operator following...
do { // this do allows us to parse multiple ternary expressions in succession without screwing up.
var ternary = false;
if (
(!forHeader && match.value == 'in') || // one of two named binary operators, may not be first expression in for-header (when semi's occur in the for-header)
(match.value == 'instanceof') || // only other named binary operator
((match.name == 11/*PUNCTUATOR*/) && // we can only expect a punctuator now
(match.isAssignment = this.regexAssignments.test(match.value)) || // assignments are only okay with proper lhs
this.regexNonAssignmentBinaryExpressionOperators.test(match.value) // test all other binary operators
)
) {
if (match.isAssignment) {
if (!acceptAssignment) this.failignore('IllegalLhsForAssignment', match, stack);
else if (parsedNonAssignmentOperator) this.failignore('AssignmentNotAllowedAfterNonAssignmentInExpression', match, stack);
}
if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
if (!match.isAssignment) parsedNonAssignmentOperator = true; // last allowed assignment
if (this.ast) { //#ifdef FULL_AST
match.isBinaryOperator = true;
// we build a stack to ensure any whitespace doesnt break the 1+(n*2) children rule for expressions
var ostack = stack;
stack = [];
stack.desc = 'operator-expression';
stack.isBinaryOperator = true;
stack.sub = match.value;
stack.nextBlack = match.tokposb;
ostack.sub = match.value;
stack.isAssignment = match.isAssignment;
ostack.push(stack);
} //#endif
ternary = match.value == '?';
// math, logic, assignment or in or instanceof
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (this.ast) { //#ifdef FULL_AST
// restore "expression" stack
stack = ostack;
} //#endif
// minor exception to ternary operator, we need to parse two expressions nao. leave the trailing expression to the loop.
if (ternary) {
// LogicalORExpression "?" AssignmentExpression ":" AssignmentExpression
// so that means just one expression center and right.
if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) this.failignore('InvalidCenterTernaryExpression', match, stack);
match = this.eatExpressions(false, match, stack, true, forHeader); // only one expression allowed inside ternary center/right
if (match.value != ':') {
if (match.value == ',') match = this.failsafe('TernarySecondExpressionCanNotContainComma', match);
else match = this.failsafe('UnfinishedTernaryOperator', match);
}
if (this.ast) { //#ifdef FULL_AST
// we build a stack to ensure any whitespace doesnt break the 1+(n*2) children rule for expressions
var ostack = stack;
stack = [];
stack.desc = 'operator-expression';
stack.sub = match.value;
stack.nextBlack = match.tokposb;
ostack.sub = match.value;
stack.isAssignment = match.isAssignment;
ostack.push(stack);
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (this.ast) { //#ifdef FULL_AST
stack = ostack;
} //#endif
// rhs of the ternary can not contain a comma either
match = this.eatExpressions(false, match, stack, true, forHeader); // only one expression allowed inside ternary center/right
}
} else {
parseAnotherExpression = false;
}
} while (ternary); // if we just parsed a ternary expression, we need to check _again_ whether the next token is a binary operator.
// start over. match is the rhs for the lhs we just parsed, but lhs for the next expression
if (parseAnotherExpression && !(/*is left hand side start?*/ match.name <= 6 || match.name == 15/*TAG*/ || this.regexLhsStart.test(match.value))) {
// no idea what to do now. lets just ignore and see where it ends. TOFIX: maybe just break the loop or return?
this.failignore('InvalidRhsExpression', match, stack);
}
}
if (this.ast) { //#ifdef FULL_AST
// restore "expressions" stack
stack = astack;
} //#endif
// at this point we should have parsed one AssignmentExpression
// lets see if we can parse another one...
mayParseLabeledStatementInstead = first = false;
} while (!onlyOne && match.value == ',');
if (this.ast) { //#ifdef FULL_AST
// remove empty array
if (!stack.length) pstack.length = pstack.length-1;
pstack.numberOfExpressions = parsedExpressions;
if (pstack[0]) pstack[0].numberOfExpressions = parsedExpressions;
stack.expressionCount = parsedExpressions;
} //#endif
return match;
},
eatFunctionDeclaration: function(match, stack){
if (this.ast) { //#ifdef FULL_AST
stack.push(stack = []);
var prevscope = this.scope;
stack.desc = 'func decl';
stack.isFunction = true;
stack.nextBlack = match.tokposb;
if (!this.scope.functions) this.scope.functions = [];
match.functionId = this.scope.functions.length;
this.scope.functions.push(match);
// add new scope
match.scope = stack.scope = this.scope = [
this.scope, // add current scope (build scope chain up-down)
// Object.create(null,
{value:'this', isDeclared:true, isEcma:true, functionStack:stack},
// Object.create(null,
{value:'arguments', isDeclared:true, isEcma:true, varType:['Object']}
];
// ref to back to function that's the cause for this scope
this.scope.scopeFor = match;
match.targetScope = prevscope; // consistency
match.functionStack = stack;
match.isFuncDeclKeyword = true;
} //#endif
// only place that this function is used already checks whether next token is function
var functionKeyword = match;
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name != 2/*IDENTIFIER*/) match = this.failsafe('FunctionDeclarationsMustHaveName', match);
if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) this.failignore('FunctionNameMayNotBeReserved', match, stack);
if (this.ast) { //#ifdef FULL_AST
functionKeyword.funcName = match;
prevscope.push({value:match.value});
match.meta = 'func decl name'; // that's what it is, really
match.varType = ['Function'];
match.functionStack = stack;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
match = this.eatFunctionParametersAndBody(match, stack, false, functionKeyword); // first token after func-decl is regex
if (this.ast) { //#ifdef FULL_AST
// restore previous scope
this.scope = prevscope;
} //#endif
return match;
},
eatObjectLiteralColonAndBody: function(match, stack){
if (this.ast) { //#ifdef FULL_AST
var propValueStack = stack;
stack = [];
stack.desc = 'objlit pair colon';
stack.nextBlack = match.tokposb;
propValueStack.push(stack);
} //#endif
if (match.value != ':') match = this.failsafe('ObjectLiteralExpectsColonAfterName', match);
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (this.ast) { //#ifdef FULL_AST
stack = propValueStack;
} //#endif
// this might actually fail due to ASI optimization.
// if the property name does not exist and it is the last item
// of the objlit, the expression parser will see an unexpected
// } and ignore it, giving some leeway to apply ASI. of course,
// that doesnt work for objlits. but we dont want to break the
// existing mechanisms. so we check this differently... :)
var prevMatch = match;
match = this.eatExpressions(false, match, stack, true); // only one expression
if (match == prevMatch) match = this.failsafe('ObjectLiteralMissingPropertyValue', match);
return match;
},
eatFunctionParametersAndBody: function(match, stack, div, funcToken){
// div: the first token _after_ a function expression may be a division...
if (match.value != '(') match = this.failsafe('ExpectingFunctionHeaderStart', match);
else if (this.ast) { //#ifdef FULL_AST
var lhp = match;
funcToken.lhp = match;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name == 2/*IDENTIFIER*/) { // params
if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) this.failignore('FunctionArgumentsCanNotBeReserved', match, stack);
if (this.ast) { //#ifdef FULL_AST
if (!funcToken.paramNames) funcToken.paramNames = [];
stack.paramNames = funcToken.paramNames;
funcToken.paramNames.push(match);
this.scope.push({value:match.value}); // add param name to scope
match.meta = 'parameter';
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
while (match.value == ',') {
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
if (match.name != 2/*IDENTIFIER*/) {
// example: if name is 12, the source is incomplete...
this.failignore('FunctionParametersMustBeIdentifiers', match, stack);
} else if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) {
this.failignore('FunctionArgumentsCanNotBeReserved', match, stack);
}
if (this.ast) { //#ifdef FULL_AST
// Object.create(null,
this.scope.push({value:match.value}); // add param name to scope
match.meta = 'parameter';
if (match.name == 2/*IDENTIFIER*/) funcToken.paramNames.push(match);
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
}
}
if (this.ast) { //#ifdef FULL_AST
if (lhp) {
match.twin = lhp;
lhp.twin = match;
funcToken.rhp = match;
}
} //#endif
if (match.value != ')') match = this.failsafe('ExpectedFunctionHeaderClose', match); // TOFIX: can be various things here...
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
match = this.eatFunctionBody(match, stack, div, funcToken);
return match;
},
eatFunctionBody: function(match, stack, div, funcToken){
if (this.ast) { //#ifdef FULL_AST
stack.push(stack = []);
stack.desc = 'func body';
stack.nextBlack = match.tokposb;
// create EMPTY list of functions. labels cannot cross function boundaries
var labelBackup = this.statementLabels;
this.statementLabels = [];
stack.labels = this.statementLabels;
} //#endif
// if div, a division can occur _after_ this function expression
//this.stats.eatFunctionBody = (+//this.stats.eatFunctionBody||0)+1;
if (match.value != '{') match = this.failsafe('ExpectedFunctionBodyCurlyOpen', match);
if (this.ast) { //#ifdef FULL_AST
var lhc = match;
if (funcToken) funcToken.lhc = lhc;
} //#endif
match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
match = this.eatSourceElements(match, stack);
if (match.value != '}') match = this.failsafe('ExpectedFunctionBodyCurlyClose', match);
if (this.ast) { //#ifdef FULL_AST
match.twin = lhc;
lhc.twin = match;
if (funcToken) funcToken.rhc = match;
} //#endif