-
-
Notifications
You must be signed in to change notification settings - Fork 400
/
Copy pathast.js
3382 lines (3052 loc) · 97 KB
/
ast.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
/***********************************************************************
A JavaScript tokenizer / parser / beautifier / compressor.
https://github.com/mishoo/UglifyJS2
-------------------------------- (C) ---------------------------------
Author: Mihai Bazon
http://mihai.bazon.net/blog
Distributed under the BSD license:
Copyright 2012 (c) Mihai Bazon <[email protected]>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
***********************************************************************/
import {
HOP,
MAP,
noop
} from "./utils/index.js";
import { parse } from "./parse.js";
function DEFNODE(type, props, ctor, methods, base = AST_Node) {
if (!props) props = [];
else props = props.split(/\s+/);
var self_props = props;
if (base && base.PROPS)
props = props.concat(base.PROPS);
const proto = base && Object.create(base.prototype);
if (proto) {
ctor.prototype = proto;
ctor.BASE = base;
}
if (base) base.SUBCLASSES.push(ctor);
ctor.prototype.CTOR = ctor;
ctor.prototype.constructor = ctor;
ctor.PROPS = props || null;
ctor.SELF_PROPS = self_props;
ctor.SUBCLASSES = [];
if (type) {
ctor.prototype.TYPE = ctor.TYPE = type;
}
if (methods) for (let i in methods) if (HOP(methods, i)) {
if (i[0] === "$") {
ctor[i.substr(1)] = methods[i];
} else {
ctor.prototype[i] = methods[i];
}
}
ctor.DEFMETHOD = function(name, method) {
this.prototype[name] = method;
};
return ctor;
}
const has_tok_flag = (tok, flag) => Boolean(tok.flags & flag);
const set_tok_flag = (tok, flag, truth) => {
if (truth) {
tok.flags |= flag;
} else {
tok.flags &= ~flag;
}
};
const TOK_FLAG_NLB = 0b0001;
const TOK_FLAG_QUOTE_SINGLE = 0b0010;
const TOK_FLAG_QUOTE_EXISTS = 0b0100;
const TOK_FLAG_TEMPLATE_END = 0b1000;
class AST_Token {
constructor(type, value, line, col, pos, nlb, comments_before, comments_after, file) {
this.flags = (nlb ? 1 : 0);
this.type = type;
this.value = value;
this.line = line;
this.col = col;
this.pos = pos;
this.comments_before = comments_before;
this.comments_after = comments_after;
this.file = file;
Object.seal(this);
}
// Return a string summary of the token for node.js console.log
[Symbol.for("nodejs.util.inspect.custom")](_depth, options) {
const special = str => options.stylize(str, "special");
const quote = typeof this.value === "string" && this.value.includes("`") ? "'" : "`";
const value = `${quote}${this.value}${quote}`;
return `${special("[AST_Token")} ${value} at ${this.line}:${this.col}${special("]")}`;
}
get nlb() {
return has_tok_flag(this, TOK_FLAG_NLB);
}
set nlb(new_nlb) {
set_tok_flag(this, TOK_FLAG_NLB, new_nlb);
}
get quote() {
return !has_tok_flag(this, TOK_FLAG_QUOTE_EXISTS)
? ""
: (has_tok_flag(this, TOK_FLAG_QUOTE_SINGLE) ? "'" : '"');
}
set quote(quote_type) {
set_tok_flag(this, TOK_FLAG_QUOTE_SINGLE, quote_type === "'");
set_tok_flag(this, TOK_FLAG_QUOTE_EXISTS, !!quote_type);
}
get template_end() {
return has_tok_flag(this, TOK_FLAG_TEMPLATE_END);
}
set template_end(new_template_end) {
set_tok_flag(this, TOK_FLAG_TEMPLATE_END, new_template_end);
}
}
var AST_Node = DEFNODE("Node", "start end", function AST_Node(props) {
if (props) {
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
_clone: function(deep) {
if (deep) {
var self = this.clone();
return self.transform(new TreeTransformer(function(node) {
if (node !== self) {
return node.clone(true);
}
}));
}
return new this.CTOR(this);
},
clone: function(deep) {
return this._clone(deep);
},
$documentation: "Base class of all AST nodes",
$propdoc: {
start: "[AST_Token] The first token of this node",
end: "[AST_Token] The last token of this node"
},
_walk: function(visitor) {
return visitor._visit(this);
},
walk: function(visitor) {
return this._walk(visitor); // not sure the indirection will be any help
},
_children_backwards: () => {}
}, null);
/* -----[ statements ]----- */
var AST_Statement = DEFNODE("Statement", null, function AST_Statement(props) {
if (props) {
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Base class of all statements",
});
var AST_Debugger = DEFNODE("Debugger", null, function AST_Debugger(props) {
if (props) {
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Represents a debugger statement",
}, AST_Statement);
var AST_Directive = DEFNODE("Directive", "value quote", function AST_Directive(props) {
if (props) {
this.value = props.value;
this.quote = props.quote;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Represents a directive, like \"use strict\";",
$propdoc: {
value: "[string] The value of this directive as a plain string (it's not an AST_String!)",
quote: "[string] the original quote character"
},
}, AST_Statement);
var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", function AST_SimpleStatement(props) {
if (props) {
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A statement consisting of an expression, i.e. a = 1 + 2",
$propdoc: {
body: "[AST_Node] an expression node (should not be instanceof AST_Statement)"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
}
}, AST_Statement);
function walk_body(node, visitor) {
const body = node.body;
for (var i = 0, len = body.length; i < len; i++) {
body[i]._walk(visitor);
}
}
function clone_block_scope(deep) {
var clone = this._clone(deep);
if (this.block_scope) {
clone.block_scope = this.block_scope.clone();
}
return clone;
}
var AST_Block = DEFNODE("Block", "body block_scope", function AST_Block(props) {
if (props) {
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A body of statements (usually braced)",
$propdoc: {
body: "[AST_Statement*] an array of statements",
block_scope: "[AST_Scope] the block scope"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
walk_body(this, visitor);
});
},
_children_backwards(push) {
let i = this.body.length;
while (i--) push(this.body[i]);
},
clone: clone_block_scope
}, AST_Statement);
var AST_BlockStatement = DEFNODE("BlockStatement", null, function AST_BlockStatement(props) {
if (props) {
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A block statement",
}, AST_Block);
var AST_EmptyStatement = DEFNODE("EmptyStatement", null, function AST_EmptyStatement(props) {
if (props) {
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "The empty statement (empty block or simply a semicolon)"
}, AST_Statement);
var AST_StatementWithBody = DEFNODE("StatementWithBody", "body", function AST_StatementWithBody(props) {
if (props) {
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`",
$propdoc: {
body: "[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement"
}
}, AST_Statement);
var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", function AST_LabeledStatement(props) {
if (props) {
this.label = props.label;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Statement with a label",
$propdoc: {
label: "[AST_Label] a label definition"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.label._walk(visitor);
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
push(this.label);
},
clone: function(deep) {
var node = this._clone(deep);
if (deep) {
var label = node.label;
var def = this.label;
node.walk(new TreeWalker(function(node) {
if (node instanceof AST_LoopControl
&& node.label && node.label.thedef === def) {
node.label.thedef = label;
label.references.push(node);
}
}));
}
return node;
}
}, AST_StatementWithBody);
var AST_IterationStatement = DEFNODE(
"IterationStatement",
"block_scope",
function AST_IterationStatement(props) {
if (props) {
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
},
{
$documentation: "Internal class. All loops inherit from it.",
$propdoc: {
block_scope: "[AST_Scope] the block scope for this iteration statement."
},
clone: clone_block_scope
},
AST_StatementWithBody
);
var AST_DWLoop = DEFNODE("DWLoop", "condition", function AST_DWLoop(props) {
if (props) {
this.condition = props.condition;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "Base class for do/while statements",
$propdoc: {
condition: "[AST_Node] the loop condition. Should not be instanceof AST_Statement"
}
}, AST_IterationStatement);
var AST_Do = DEFNODE("Do", null, function AST_Do(props) {
if (props) {
this.condition = props.condition;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `do` statement",
_walk: function(visitor) {
return visitor._visit(this, function() {
this.body._walk(visitor);
this.condition._walk(visitor);
});
},
_children_backwards(push) {
push(this.condition);
push(this.body);
}
}, AST_DWLoop);
var AST_While = DEFNODE("While", null, function AST_While(props) {
if (props) {
this.condition = props.condition;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `while` statement",
_walk: function(visitor) {
return visitor._visit(this, function() {
this.condition._walk(visitor);
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
push(this.condition);
},
}, AST_DWLoop);
var AST_For = DEFNODE("For", "init condition step", function AST_For(props) {
if (props) {
this.init = props.init;
this.condition = props.condition;
this.step = props.step;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `for` statement",
$propdoc: {
init: "[AST_Node?] the `for` initialization code, or null if empty",
condition: "[AST_Node?] the `for` termination clause, or null if empty",
step: "[AST_Node?] the `for` update clause, or null if empty"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
if (this.init) this.init._walk(visitor);
if (this.condition) this.condition._walk(visitor);
if (this.step) this.step._walk(visitor);
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
if (this.step) push(this.step);
if (this.condition) push(this.condition);
if (this.init) push(this.init);
},
}, AST_IterationStatement);
var AST_ForIn = DEFNODE("ForIn", "init object", function AST_ForIn(props) {
if (props) {
this.init = props.init;
this.object = props.object;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `for ... in` statement",
$propdoc: {
init: "[AST_Node] the `for/in` initialization code",
object: "[AST_Node] the object that we're looping through"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.init._walk(visitor);
this.object._walk(visitor);
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
if (this.object) push(this.object);
if (this.init) push(this.init);
},
}, AST_IterationStatement);
var AST_ForOf = DEFNODE("ForOf", "await", function AST_ForOf(props) {
if (props) {
this.await = props.await;
this.init = props.init;
this.object = props.object;
this.block_scope = props.block_scope;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `for ... of` statement",
}, AST_ForIn);
var AST_With = DEFNODE("With", "expression", function AST_With(props) {
if (props) {
this.expression = props.expression;
this.body = props.body;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A `with` statement",
$propdoc: {
expression: "[AST_Node] the `with` expression"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.expression._walk(visitor);
this.body._walk(visitor);
});
},
_children_backwards(push) {
push(this.body);
push(this.expression);
},
}, AST_StatementWithBody);
/* -----[ scope and functions ]----- */
var AST_Scope = DEFNODE(
"Scope",
"variables uses_with uses_eval parent_scope enclosed cname",
function AST_Scope(props) {
if (props) {
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
},
{
$documentation: "Base class for all statements introducing a lexical scope",
$propdoc: {
variables: "[Map/S] a map of name -> SymbolDef for all variables/functions defined in this scope",
uses_with: "[boolean/S] tells whether this scope uses the `with` statement",
uses_eval: "[boolean/S] tells whether this scope contains a direct call to the global `eval`",
parent_scope: "[AST_Scope?/S] link to the parent scope",
enclosed: "[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",
cname: "[integer/S] current index for mangling variables (used internally by the mangler)",
},
get_defun_scope: function() {
var self = this;
while (self.is_block_scope()) {
self = self.parent_scope;
}
return self;
},
clone: function(deep, toplevel) {
var node = this._clone(deep);
if (deep && this.variables && toplevel && !this._block_scope) {
node.figure_out_scope({}, {
toplevel: toplevel,
parent_scope: this.parent_scope
});
} else {
if (this.variables) node.variables = new Map(this.variables);
if (this.enclosed) node.enclosed = this.enclosed.slice();
if (this._block_scope) node._block_scope = this._block_scope;
}
return node;
},
pinned: function() {
return this.uses_eval || this.uses_with;
}
},
AST_Block
);
var AST_Toplevel = DEFNODE("Toplevel", "globals", function AST_Toplevel(props) {
if (props) {
this.globals = props.globals;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "The toplevel scope",
$propdoc: {
globals: "[Map/S] a map of name -> SymbolDef for all undeclared names",
},
wrap_commonjs: function(name) {
var body = this.body;
var wrapped_tl = "(function(exports){'$ORIG';})(typeof " + name + "=='undefined'?(" + name + "={}):" + name + ");";
wrapped_tl = parse(wrapped_tl);
wrapped_tl = wrapped_tl.transform(new TreeTransformer(function(node) {
if (node instanceof AST_Directive && node.value == "$ORIG") {
return MAP.splice(body);
}
}));
return wrapped_tl;
},
wrap_enclose: function(args_values) {
if (typeof args_values != "string") args_values = "";
var index = args_values.indexOf(":");
if (index < 0) index = args_values.length;
var body = this.body;
return parse([
"(function(",
args_values.slice(0, index),
'){"$ORIG"})(',
args_values.slice(index + 1),
")"
].join("")).transform(new TreeTransformer(function(node) {
if (node instanceof AST_Directive && node.value == "$ORIG") {
return MAP.splice(body);
}
}));
}
}, AST_Scope);
var AST_Expansion = DEFNODE("Expansion", "expression", function AST_Expansion(props) {
if (props) {
this.expression = props.expression;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "An expandible argument, such as ...rest, a splat, such as [1,2,...all], or an expansion in a variable declaration, such as var [first, ...rest] = list",
$propdoc: {
expression: "[AST_Node] the thing to be expanded"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.expression.walk(visitor);
});
},
_children_backwards(push) {
push(this.expression);
},
});
var AST_Lambda = DEFNODE(
"Lambda",
"name argnames uses_arguments is_generator async",
function AST_Lambda(props) {
if (props) {
this.name = props.name;
this.argnames = props.argnames;
this.uses_arguments = props.uses_arguments;
this.is_generator = props.is_generator;
this.async = props.async;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
},
{
$documentation: "Base class for functions",
$propdoc: {
name: "[AST_SymbolDeclaration?] the name of this function",
argnames: "[AST_SymbolFunarg|AST_Destructuring|AST_Expansion|AST_DefaultAssign*] array of function arguments, destructurings, or expanding arguments",
uses_arguments: "[boolean/S] tells whether this function accesses the arguments array",
is_generator: "[boolean] is this a generator method",
async: "[boolean] is this method async",
},
args_as_names: function () {
var out = [];
for (var i = 0; i < this.argnames.length; i++) {
if (this.argnames[i] instanceof AST_Destructuring) {
out.push(...this.argnames[i].all_symbols());
} else {
out.push(this.argnames[i]);
}
}
return out;
},
_walk: function(visitor) {
return visitor._visit(this, function() {
if (this.name) this.name._walk(visitor);
var argnames = this.argnames;
for (var i = 0, len = argnames.length; i < len; i++) {
argnames[i]._walk(visitor);
}
walk_body(this, visitor);
});
},
_children_backwards(push) {
let i = this.body.length;
while (i--) push(this.body[i]);
i = this.argnames.length;
while (i--) push(this.argnames[i]);
if (this.name) push(this.name);
},
is_braceless() {
return this.body[0] instanceof AST_Return && this.body[0].value;
},
// Default args and expansion don't count, so .argnames.length doesn't cut it
length_property() {
let length = 0;
for (const arg of this.argnames) {
if (arg instanceof AST_SymbolFunarg || arg instanceof AST_Destructuring) {
length++;
}
}
return length;
}
},
AST_Scope
);
var AST_Accessor = DEFNODE("Accessor", null, function AST_Accessor(props) {
if (props) {
this.name = props.name;
this.argnames = props.argnames;
this.uses_arguments = props.uses_arguments;
this.is_generator = props.is_generator;
this.async = props.async;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A setter/getter function. The `name` property is always null."
}, AST_Lambda);
var AST_Function = DEFNODE("Function", null, function AST_Function(props) {
if (props) {
this.name = props.name;
this.argnames = props.argnames;
this.uses_arguments = props.uses_arguments;
this.is_generator = props.is_generator;
this.async = props.async;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A function expression"
}, AST_Lambda);
var AST_Arrow = DEFNODE("Arrow", null, function AST_Arrow(props) {
if (props) {
this.name = props.name;
this.argnames = props.argnames;
this.uses_arguments = props.uses_arguments;
this.is_generator = props.is_generator;
this.async = props.async;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "An ES6 Arrow function ((a) => b)"
}, AST_Lambda);
var AST_Defun = DEFNODE("Defun", null, function AST_Defun(props) {
if (props) {
this.name = props.name;
this.argnames = props.argnames;
this.uses_arguments = props.uses_arguments;
this.is_generator = props.is_generator;
this.async = props.async;
this.variables = props.variables;
this.uses_with = props.uses_with;
this.uses_eval = props.uses_eval;
this.parent_scope = props.parent_scope;
this.enclosed = props.enclosed;
this.cname = props.cname;
this.body = props.body;
this.block_scope = props.block_scope;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A function definition"
}, AST_Lambda);
/* -----[ DESTRUCTURING ]----- */
var AST_Destructuring = DEFNODE("Destructuring", "names is_array", function AST_Destructuring(props) {
if (props) {
this.names = props.names;
this.is_array = props.is_array;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A destructuring of several names. Used in destructuring assignment and with destructuring function argument names",
$propdoc: {
"names": "[AST_Node*] Array of properties or elements",
"is_array": "[Boolean] Whether the destructuring represents an object or array"
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.names.forEach(function(name) {
name._walk(visitor);
});
});
},
_children_backwards(push) {
let i = this.names.length;
while (i--) push(this.names[i]);
},
all_symbols: function() {
var out = [];
walk(this, node => {
if (node instanceof AST_SymbolDeclaration) {
out.push(node);
}
if (node instanceof AST_Lambda) {
return true;
}
});
return out;
}
});
var AST_PrefixedTemplateString = DEFNODE(
"PrefixedTemplateString",
"template_string prefix",
function AST_PrefixedTemplateString(props) {
if (props) {
this.template_string = props.template_string;
this.prefix = props.prefix;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
},
{
$documentation: "A templatestring with a prefix, such as String.raw`foobarbaz`",
$propdoc: {
template_string: "[AST_TemplateString] The template string",
prefix: "[AST_Node] The prefix, which will get called."
},
_walk: function(visitor) {
return visitor._visit(this, function () {
this.prefix._walk(visitor);
this.template_string._walk(visitor);
});
},
_children_backwards(push) {
push(this.template_string);
push(this.prefix);
},
}
);
var AST_TemplateString = DEFNODE("TemplateString", "segments", function AST_TemplateString(props) {
if (props) {
this.segments = props.segments;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A template string literal",
$propdoc: {
segments: "[AST_Node*] One or more segments, starting with AST_TemplateSegment. AST_Node may follow AST_TemplateSegment, but each AST_Node must be followed by AST_TemplateSegment."
},
_walk: function(visitor) {
return visitor._visit(this, function() {
this.segments.forEach(function(seg) {
seg._walk(visitor);
});
});
},
_children_backwards(push) {
let i = this.segments.length;
while (i--) push(this.segments[i]);
}
});
var AST_TemplateSegment = DEFNODE("TemplateSegment", "value raw", function AST_TemplateSegment(props) {
if (props) {
this.value = props.value;
this.raw = props.raw;
this.start = props.start;
this.end = props.end;
}
this.flags = 0;
}, {
$documentation: "A segment of a template string literal",
$propdoc: {
value: "Content of the segment",
raw: "Raw source of the segment",
}
});
/* -----[ JUMPS ]----- */
var AST_Jump = DEFNODE("Jump", null, function AST_Jump(props) {
if (props) {
this.start = props.start;
this.end = props.end;