-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathast.go
1499 lines (1251 loc) · 36.2 KB
/
ast.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
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
package ast
import (
"strings"
"github.com/evanw/esbuild/internal/sourcemap"
"github.com/evanw/esbuild/internal/compat"
)
// Every module (i.e. file) is parsed into a separate AST data structure. For
// efficiency, the parser also resolves all scopes and binds all symbols in the
// tree.
//
// Identifiers in the tree are referenced by a Ref, which is a pointer into the
// symbol table for the file. The symbol table is stored as a top-level field
// in the AST so it can be accessed without traversing the tree. For example,
// a renaming pass can iterate over the symbol table without touching the tree.
//
// Parse trees are intended to be immutable. That makes it easy to build an
// incremental compiler with a "watch" mode that can avoid re-parsing files
// that have already been parsed. Any passes that operate on an AST after it
// has been parsed should create a copy of the mutated parts of the tree
// instead of mutating the original tree.
type L int
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence
const (
LLowest L = iota
LComma
LSpread
LYield
LAssign
LConditional
LNullishCoalescing
LLogicalOr
LLogicalAnd
LBitwiseOr
LBitwiseXor
LBitwiseAnd
LEquals
LCompare
LShift
LAdd
LMultiply
LExponentiation
LPrefix
LPostfix
LNew
LCall
)
type OpCode int
func (op OpCode) IsPrefix() bool {
return op < UnOpPostDec
}
func (op OpCode) UnaryAssignTarget() AssignTarget {
if op >= UnOpPreDec && op <= UnOpPostInc {
return AssignTargetUpdate
}
return AssignTargetNone
}
func (op OpCode) IsLeftAssociative() bool {
return op >= BinOpAdd && op < BinOpComma && op != BinOpPow
}
func (op OpCode) IsRightAssociative() bool {
return op >= BinOpAssign || op == BinOpPow
}
func (op OpCode) BinaryAssignTarget() AssignTarget {
if op == BinOpAssign {
return AssignTargetReplace
}
if op > BinOpAssign {
return AssignTargetUpdate
}
return AssignTargetNone
}
type AssignTarget uint8
const (
AssignTargetNone AssignTarget = iota
AssignTargetReplace // "a = b"
AssignTargetUpdate // "a += b"
)
// If you add a new token, remember to add it to "OpTable" too
const (
// Prefix
UnOpPos OpCode = iota
UnOpNeg
UnOpCpl
UnOpNot
UnOpVoid
UnOpTypeof
UnOpDelete
// Prefix update
UnOpPreDec
UnOpPreInc
// Postfix update
UnOpPostDec
UnOpPostInc
// Left-associative
BinOpAdd
BinOpSub
BinOpMul
BinOpDiv
BinOpRem
BinOpPow
BinOpLt
BinOpLe
BinOpGt
BinOpGe
BinOpIn
BinOpInstanceof
BinOpShl
BinOpShr
BinOpUShr
BinOpLooseEq
BinOpLooseNe
BinOpStrictEq
BinOpStrictNe
BinOpNullishCoalescing
BinOpLogicalOr
BinOpLogicalAnd
BinOpBitwiseOr
BinOpBitwiseAnd
BinOpBitwiseXor
// Non-associative
BinOpComma
// Right-associative
BinOpAssign
BinOpAddAssign
BinOpSubAssign
BinOpMulAssign
BinOpDivAssign
BinOpRemAssign
BinOpPowAssign
BinOpShlAssign
BinOpShrAssign
BinOpUShrAssign
BinOpBitwiseOrAssign
BinOpBitwiseAndAssign
BinOpBitwiseXorAssign
BinOpNullishCoalescingAssign
BinOpLogicalOrAssign
BinOpLogicalAndAssign
)
type opTableEntry struct {
Text string
Level L
IsKeyword bool
}
var OpTable = []opTableEntry{
// Prefix
{"+", LPrefix, false},
{"-", LPrefix, false},
{"~", LPrefix, false},
{"!", LPrefix, false},
{"void", LPrefix, true},
{"typeof", LPrefix, true},
{"delete", LPrefix, true},
// Prefix update
{"--", LPrefix, false},
{"++", LPrefix, false},
// Postfix update
{"--", LPostfix, false},
{"++", LPostfix, false},
// Left-associative
{"+", LAdd, false},
{"-", LAdd, false},
{"*", LMultiply, false},
{"/", LMultiply, false},
{"%", LMultiply, false},
{"**", LExponentiation, false}, // Right-associative
{"<", LCompare, false},
{"<=", LCompare, false},
{">", LCompare, false},
{">=", LCompare, false},
{"in", LCompare, true},
{"instanceof", LCompare, true},
{"<<", LShift, false},
{">>", LShift, false},
{">>>", LShift, false},
{"==", LEquals, false},
{"!=", LEquals, false},
{"===", LEquals, false},
{"!==", LEquals, false},
{"??", LNullishCoalescing, false},
{"||", LLogicalOr, false},
{"&&", LLogicalAnd, false},
{"|", LBitwiseOr, false},
{"&", LBitwiseAnd, false},
{"^", LBitwiseXor, false},
// Non-associative
{",", LComma, false},
// Right-associative
{"=", LAssign, false},
{"+=", LAssign, false},
{"-=", LAssign, false},
{"*=", LAssign, false},
{"/=", LAssign, false},
{"%=", LAssign, false},
{"**=", LAssign, false},
{"<<=", LAssign, false},
{">>=", LAssign, false},
{">>>=", LAssign, false},
{"|=", LAssign, false},
{"&=", LAssign, false},
{"^=", LAssign, false},
{"??=", LAssign, false},
{"||=", LAssign, false},
{"&&=", LAssign, false},
}
type Loc struct {
// This is the 0-based index of this location from the start of the file, in bytes
Start int32
}
type Range struct {
Loc Loc
Len int32
}
func (r Range) End() int32 {
return r.Loc.Start + r.Len
}
type LocRef struct {
Loc Loc
Ref Ref
}
type Span struct {
Text string
Range Range
}
// This is used to represent both file system paths (IsAbsolute == true) and
// abstract module paths (IsAbsolute == false). Abstract module paths represent
// "virtual modules" when used for an input file and "package paths" when used
// to represent an external module.
type Path struct {
Text string
IsAbsolute bool
}
func (a Path) ComesBeforeInSortedOrder(b Path) bool {
if !a.IsAbsolute && b.IsAbsolute {
return false
}
if a.IsAbsolute && !b.IsAbsolute {
return true
}
return a.Text < b.Text
}
type PropertyKind int
const (
PropertyNormal PropertyKind = iota
PropertyGet
PropertySet
PropertySpread
)
type Property struct {
TSDecorators []Expr
Key Expr
// This is omitted for class fields
Value *Expr
// This is used when parsing a pattern that uses default values:
//
// [a = 1] = [];
// ({a = 1} = {});
//
// It's also used for class fields:
//
// class Foo { a = 1 }
//
Initializer *Expr
Kind PropertyKind
IsComputed bool
IsMethod bool
IsStatic bool
}
type PropertyBinding struct {
IsComputed bool
IsSpread bool
Key Expr
Value Binding
DefaultValue *Expr
}
type Arg struct {
TSDecorators []Expr
Binding Binding
Default *Expr
// "constructor(public x: boolean) {}"
IsTypeScriptCtorField bool
}
type Fn struct {
Name *LocRef
Args []Arg
Body FnBody
ArgumentsRef Ref
IsAsync bool
IsGenerator bool
HasRestArg bool
}
type FnBody struct {
Loc Loc
Stmts []Stmt
}
type Class struct {
TSDecorators []Expr
Name *LocRef
Extends *Expr
BodyLoc Loc
Properties []Property
}
type ArrayBinding struct {
Binding Binding
DefaultValue *Expr
}
type Binding struct {
Loc Loc
Data B
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type B interface{ isBinding() }
type BMissing struct{}
type BIdentifier struct{ Ref Ref }
type BArray struct {
Items []ArrayBinding
HasSpread bool
IsSingleLine bool
}
type BObject struct {
Properties []PropertyBinding
IsSingleLine bool
}
func (*BMissing) isBinding() {}
func (*BIdentifier) isBinding() {}
func (*BArray) isBinding() {}
func (*BObject) isBinding() {}
type Expr struct {
Loc Loc
Data E
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type E interface{ isExpr() }
type EArray struct {
Items []Expr
IsSingleLine bool
}
type EUnary struct {
Op OpCode
Value Expr
}
type EBinary struct {
Op OpCode
Left Expr
Right Expr
}
type EBoolean struct{ Value bool }
type ESuper struct{}
type ENull struct{}
type EUndefined struct{}
type EThis struct{}
type ENew struct {
Target Expr
Args []Expr
// True if there is a comment containing "@__PURE__" or "#__PURE__" preceding
// this call expression. See the comment inside ECall for more details.
CanBeUnwrappedIfUnused bool
}
type ENewTarget struct{}
type EImportMeta struct{}
type OptionalChain uint8
const (
// "a.b"
OptionalChainNone OptionalChain = iota
// "a?.b"
OptionalChainStart
// "a?.b.c" => ".c" is OptionalChainContinue
// "(a?.b).c" => ".c" is OptionalChainNone
OptionalChainContinue
)
type ECall struct {
Target Expr
Args []Expr
OptionalChain OptionalChain
IsDirectEval bool
// True if there is a comment containing "@__PURE__" or "#__PURE__" preceding
// this call expression. This is an annotation used for tree shaking, and
// means that the call can be removed if it's unused. It does not mean the
// call is pure (e.g. it may still return something different if called twice).
//
// Note that the arguments are not considered to be part of the call. If the
// call itself is removed due to this annotation, the arguments must remain
// if they have side effects.
CanBeUnwrappedIfUnused bool
}
type EDot struct {
Target Expr
Name string
NameLoc Loc
OptionalChain OptionalChain
// If true, this property access is known to be free of side-effects. That
// means it can be removed if the resulting value isn't used.
CanBeRemovedIfUnused bool
// If true, this property access is a function that, when called, can be
// unwrapped if the resulting value is unused. Unwrapping means discarding
// the call target but keeping any arguments with side effects.
CallCanBeUnwrappedIfUnused bool
}
type EIndex struct {
Target Expr
Index Expr
OptionalChain OptionalChain
}
type EArrow struct {
IsAsync bool
Args []Arg
HasRestArg bool
IsParenthesized bool
PreferExpr bool // Use shorthand if true and "Body" is a single return statement
Body FnBody
}
type EFunction struct{ Fn Fn }
type EClass struct{ Class Class }
type EIdentifier struct {
Ref Ref
// If true, this identifier is known to not have a side effect (i.e. to not
// throw an exception) when referenced. If false, this identifier may or may
// not have side effects when referenced. This is used to allow the removal
// of known globals such as "Object" if they aren't used.
CanBeRemovedIfUnused bool
// If true, this identifier represents a function that, when called, can be
// unwrapped if the resulting value is unused. Unwrapping means discarding
// the call target but keeping any arguments with side effects.
CallCanBeUnwrappedIfUnused bool
}
// This is similar to an EIdentifier but it represents a reference to an ES6
// import item.
//
// Depending on how the code is linked, the file containing this EImportIdentifier
// may or may not be in the same module group as the file it was imported from.
//
// If it's the same module group than we can just merge the import item symbol
// with the corresponding symbol that was imported, effectively renaming them
// to be the same thing and statically binding them together.
//
// But if it's a different module group, then the import must be dynamically
// evaluated using a property access off the corresponding namespace symbol,
// which represents the result of a require() call.
//
// It's stored as a separate type so it's not easy to confuse with a plain
// identifier. For example, it'd be bad if code trying to convert "{x: x}" into
// "{x}" shorthand syntax wasn't aware that the "x" in this case is actually
// "{x: importedNamespace.x}". This separate type forces code to opt-in to
// doing this instead of opt-out.
type EImportIdentifier struct {
Ref Ref
}
// This is similar to EIdentifier but it represents class-private fields and
// methods. It can be used where computed properties can be used, such as
// EIndex and Property.
type EPrivateIdentifier struct {
Ref Ref
}
type EJSXElement struct {
Tag *Expr
Properties []Property
Children []Expr
}
type EMissing struct{}
type ENumber struct{ Value float64 }
type EBigInt struct{ Value string }
type EObject struct {
Properties []Property
IsSingleLine bool
}
type ESpread struct{ Value Expr }
type EString struct{ Value []uint16 }
type TemplatePart struct {
Value Expr
Tail []uint16
TailRaw string // This is only filled out for tagged template literals
}
type ETemplate struct {
Tag *Expr
Head []uint16
HeadRaw string // This is only filled out for tagged template literals
Parts []TemplatePart
}
type ERegExp struct{ Value string }
type EAwait struct {
Value Expr
}
type EYield struct {
Value *Expr
IsStar bool
}
type EIf struct {
Test Expr
Yes Expr
No Expr
}
type ERequire struct {
ImportRecordIndex uint32
}
type EImport struct {
Expr Expr
ImportRecordIndex *uint32
}
func (*EArray) isExpr() {}
func (*EUnary) isExpr() {}
func (*EBinary) isExpr() {}
func (*EBoolean) isExpr() {}
func (*ESuper) isExpr() {}
func (*ENull) isExpr() {}
func (*EUndefined) isExpr() {}
func (*EThis) isExpr() {}
func (*ENew) isExpr() {}
func (*ENewTarget) isExpr() {}
func (*EImportMeta) isExpr() {}
func (*ECall) isExpr() {}
func (*EDot) isExpr() {}
func (*EIndex) isExpr() {}
func (*EArrow) isExpr() {}
func (*EFunction) isExpr() {}
func (*EClass) isExpr() {}
func (*EIdentifier) isExpr() {}
func (*EImportIdentifier) isExpr() {}
func (*EPrivateIdentifier) isExpr() {}
func (*EJSXElement) isExpr() {}
func (*EMissing) isExpr() {}
func (*ENumber) isExpr() {}
func (*EBigInt) isExpr() {}
func (*EObject) isExpr() {}
func (*ESpread) isExpr() {}
func (*EString) isExpr() {}
func (*ETemplate) isExpr() {}
func (*ERegExp) isExpr() {}
func (*EAwait) isExpr() {}
func (*EYield) isExpr() {}
func (*EIf) isExpr() {}
func (*ERequire) isExpr() {}
func (*EImport) isExpr() {}
func Assign(a Expr, b Expr) Expr {
return Expr{a.Loc, &EBinary{BinOpAssign, a, b}}
}
func AssignStmt(a Expr, b Expr) Stmt {
return Stmt{a.Loc, &SExpr{Expr{a.Loc, &EBinary{BinOpAssign, a, b}}}}
}
func JoinWithComma(a Expr, b Expr) Expr {
return Expr{a.Loc, &EBinary{BinOpComma, a, b}}
}
func JoinAllWithComma(all []Expr) Expr {
result := all[0]
for _, value := range all[1:] {
result = JoinWithComma(result, value)
}
return result
}
type ExprOrStmt struct {
Expr *Expr
Stmt *Stmt
}
type Stmt struct {
Loc Loc
Data S
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type S interface{ isStmt() }
type SBlock struct {
Stmts []Stmt
}
type SEmpty struct{}
// This is a stand-in for a TypeScript type declaration
type STypeScript struct{}
type SComment struct {
Text string
}
type SDebugger struct{}
type SDirective struct {
Value []uint16
}
type SExportClause struct {
Items []ClauseItem
IsSingleLine bool
}
type SExportFrom struct {
Items []ClauseItem
NamespaceRef Ref
ImportRecordIndex uint32
IsSingleLine bool
}
type SExportDefault struct {
DefaultName LocRef
Value ExprOrStmt // May be a SFunction or SClass
}
type ExportStarAlias struct {
Loc Loc
Name string
}
type SExportStar struct {
NamespaceRef Ref
Alias *ExportStarAlias
ImportRecordIndex uint32
}
// This is an "export = value;" statement in TypeScript
type SExportEquals struct {
Value Expr
}
// The decision of whether to export an expression using "module.exports" or
// "export default" is deferred until linking using this statement kind
type SLazyExport struct {
Value Expr
}
type SExpr struct {
Value Expr
}
type EnumValue struct {
Loc Loc
Ref Ref
Name []uint16
Value *Expr
}
type SEnum struct {
Name LocRef
Arg Ref
Values []EnumValue
IsExport bool
}
type SNamespace struct {
Name LocRef
Arg Ref
Stmts []Stmt
IsExport bool
}
type SFunction struct {
Fn Fn
IsExport bool
}
type SClass struct {
Class Class
IsExport bool
}
type SLabel struct {
Name LocRef
Stmt Stmt
}
type SIf struct {
Test Expr
Yes Stmt
No *Stmt
}
type SFor struct {
Init *Stmt // May be a SConst, SLet, SVar, or SExpr
Test *Expr
Update *Expr
Body Stmt
}
type SForIn struct {
Init Stmt // May be a SConst, SLet, SVar, or SExpr
Value Expr
Body Stmt
}
type SForOf struct {
IsAwait bool
Init Stmt // May be a SConst, SLet, SVar, or SExpr
Value Expr
Body Stmt
}
type SDoWhile struct {
Body Stmt
Test Expr
}
type SWhile struct {
Test Expr
Body Stmt
}
type SWith struct {
Value Expr
BodyLoc Loc
Body Stmt
}
type Catch struct {
Loc Loc
Binding *Binding
Body []Stmt
}
type Finally struct {
Loc Loc
Stmts []Stmt
}
type STry struct {
Body []Stmt
Catch *Catch
Finally *Finally
}
type Case struct {
Value *Expr
Body []Stmt
}
type SSwitch struct {
Test Expr
BodyLoc Loc
Cases []Case
}
// This object represents all of these types of import statements:
//
// import 'path'
// import {item1, item2} from 'path'
// import * as ns from 'path'
// import defaultItem, {item1, item2} from 'path'
// import defaultItem, * as ns from 'path'
//
// Many parts are optional and can be combined in different ways. The only
// restriction is that you cannot have both a clause and a star namespace.
type SImport struct {
// If this is a star import: This is a Ref for the namespace symbol. The Loc
// for the symbol is StarLoc.
//
// Otherwise: This is an auto-generated Ref for the namespace representing
// the imported file. In this case StarLoc is nil. The NamespaceRef is used
// when converting this module to a CommonJS module.
NamespaceRef Ref
DefaultName *LocRef
Items *[]ClauseItem
StarNameLoc *Loc
ImportRecordIndex uint32
IsSingleLine bool
}
type SReturn struct {
Value *Expr
}
type SThrow struct {
Value Expr
}
type LocalKind uint8
const (
LocalVar LocalKind = iota
LocalLet
LocalConst
)
type SLocal struct {
Decls []Decl
Kind LocalKind
IsExport bool
// The TypeScript compiler doesn't generate code for "import foo = bar"
// statements inside namespaces where the import is never used.
WasTSImportEqualsInNamespace bool
}
type SBreak struct {
Name *LocRef
}
type SContinue struct {
Name *LocRef
}
func (*SBlock) isStmt() {}
func (*SComment) isStmt() {}
func (*SDebugger) isStmt() {}
func (*SDirective) isStmt() {}
func (*SEmpty) isStmt() {}
func (*STypeScript) isStmt() {}
func (*SExportClause) isStmt() {}
func (*SExportFrom) isStmt() {}
func (*SExportDefault) isStmt() {}
func (*SExportStar) isStmt() {}
func (*SExportEquals) isStmt() {}
func (*SLazyExport) isStmt() {}
func (*SExpr) isStmt() {}
func (*SEnum) isStmt() {}
func (*SNamespace) isStmt() {}
func (*SFunction) isStmt() {}
func (*SClass) isStmt() {}
func (*SLabel) isStmt() {}
func (*SIf) isStmt() {}
func (*SFor) isStmt() {}
func (*SForIn) isStmt() {}
func (*SForOf) isStmt() {}
func (*SDoWhile) isStmt() {}
func (*SWhile) isStmt() {}
func (*SWith) isStmt() {}
func (*STry) isStmt() {}
func (*SSwitch) isStmt() {}
func (*SImport) isStmt() {}
func (*SReturn) isStmt() {}
func (*SThrow) isStmt() {}
func (*SLocal) isStmt() {}
func (*SBreak) isStmt() {}
func (*SContinue) isStmt() {}
func IsSuperCall(stmt Stmt) bool {
if expr, ok := stmt.Data.(*SExpr); ok {
if call, ok := expr.Value.Data.(*ECall); ok {
if _, ok := call.Target.Data.(*ESuper); ok {
return true
}
}
}
return false
}
type ClauseItem struct {
Alias string
AliasLoc Loc
Name LocRef
// This is needed for "export {foo as bar} from 'path'" statements. This case
// is a re-export and "foo" and "bar" are both aliases. We need to preserve
// both aliases in case the symbol is renamed.
OriginalName string
}
type Decl struct {
Binding Binding
Value *Expr
}
type SymbolKind uint8
const (
// An unbound symbol is one that isn't declared in the file it's referenced
// in. For example, using "window" without declaring it will be unbound.
SymbolUnbound SymbolKind = iota
// This has special merging behavior. You're allowed to re-declare these
// symbols more than once in the same scope. These symbols are also hoisted
// out of the scope they are declared in to the closest containing function
// or module scope. These are the symbols with this kind:
//
// - Function arguments
// - Function statements
// - Variables declared using "var"
//
SymbolHoisted
SymbolHoistedFunction
// There's a weird special case where catch variables declared using a simple
// identifier (i.e. not a binding pattern) block hoisted variables instead of
// becoming an error:
//
// var e = 0;
// try { throw 1 } catch (e) {
// print(e) // 1
// var e = 2
// print(e) // 2
// }
// print(e) // 0 (since the hoisting stops at the catch block boundary)
//
// However, other forms are still a syntax error:
//
// try {} catch (e) { let e }
// try {} catch ({e}) { var e }
//
// This symbol is for handling this weird special case.
SymbolCatchIdentifier