-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
js_ast.go
1780 lines (1496 loc) · 46.4 KB
/
js_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 js_ast
import (
"strconv"
"github.com/evanw/esbuild/internal/ast"
"github.com/evanw/esbuild/internal/logger"
)
// 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 uint8
// 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
LMember
)
type OpCode uint8
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
}
func (op OpCode) IsShortCircuit() bool {
switch op {
case BinOpLogicalOr, BinOpLogicalOrAssign,
BinOpLogicalAnd, BinOpLogicalAndAssign,
BinOpNullishCoalescing, BinOpNullishCoalescingAssign:
return true
}
return false
}
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 Decorator struct {
Value Expr
AtLoc logger.Loc
OmitNewlineAfter bool
}
type PropertyKind uint8
const (
PropertyNormal PropertyKind = iota
PropertyGet
PropertySet
PropertyAutoAccessor
PropertySpread
PropertyDeclare
PropertyClassStaticBlock
)
type ClassStaticBlock struct {
Block SBlock
Loc logger.Loc
}
type PropertyFlags uint8
const (
PropertyIsComputed PropertyFlags = 1 << iota
PropertyIsMethod
PropertyIsStatic
PropertyWasShorthand
PropertyPreferQuotedKey
)
func (flags PropertyFlags) Has(flag PropertyFlags) bool {
return (flags & flag) != 0
}
type Property struct {
ClassStaticBlock *ClassStaticBlock
Key Expr
// This is omitted for class fields
ValueOrNil 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 }
//
InitializerOrNil Expr
Decorators []Decorator
Loc logger.Loc
CloseBracketLoc logger.Loc
Kind PropertyKind
Flags PropertyFlags
}
type PropertyBinding struct {
Key Expr
Value Binding
DefaultValueOrNil Expr
Loc logger.Loc
CloseBracketLoc logger.Loc
IsComputed bool
IsSpread bool
PreferQuotedKey bool
}
type Arg struct {
Binding Binding
DefaultOrNil Expr
Decorators []Decorator
// "constructor(public x: boolean) {}"
IsTypeScriptCtorField bool
}
type Fn struct {
Name *ast.LocRef
Args []Arg
Body FnBody
ArgumentsRef ast.Ref
OpenParenLoc logger.Loc
IsAsync bool
IsGenerator bool
HasRestArg bool
HasIfScope bool
// See: https://github.com/rollup/rollup/pull/5024
HasNoSideEffectsComment bool
// This is true if the function is a method
IsUniqueFormalParameters bool
}
type FnBody struct {
Block SBlock
Loc logger.Loc
}
type Class struct {
Decorators []Decorator
Name *ast.LocRef
ExtendsOrNil Expr
Properties []Property
ClassKeyword logger.Range
BodyLoc logger.Loc
CloseBraceLoc logger.Loc
// If true, property field initializers cannot be assumed to have no side
// effects. For example:
//
// class Foo {
// static set foo(x) { importantSideEffect(x) }
// }
// class Bar extends Foo {
// foo = 1
// }
//
// This happens in TypeScript when "useDefineForClassFields" is disabled
// because TypeScript (and esbuild) transforms the above class into this:
//
// class Foo {
// static set foo(x) { importantSideEffect(x); }
// }
// class Bar extends Foo {
// }
// Bar.foo = 1;
//
UseDefineForClassFields bool
}
type ArrayBinding struct {
Binding Binding
DefaultValueOrNil Expr
Loc logger.Loc
}
type Binding struct {
Data B
Loc logger.Loc
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type B interface{ isBinding() }
func (*BMissing) isBinding() {}
func (*BIdentifier) isBinding() {}
func (*BArray) isBinding() {}
func (*BObject) isBinding() {}
type BMissing struct{}
type BIdentifier struct{ Ref ast.Ref }
type BArray struct {
Items []ArrayBinding
CloseBracketLoc logger.Loc
HasSpread bool
IsSingleLine bool
}
type BObject struct {
Properties []PropertyBinding
CloseBraceLoc logger.Loc
IsSingleLine bool
}
type Expr struct {
Data E
Loc logger.Loc
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type E interface{ isExpr() }
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 (*ENameOfSymbol) 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 (*EInlinedEnum) isExpr() {}
func (*EAnnotation) isExpr() {}
func (*EAwait) isExpr() {}
func (*EYield) isExpr() {}
func (*EIf) isExpr() {}
func (*ERequireString) isExpr() {}
func (*ERequireResolveString) isExpr() {}
func (*EImportString) isExpr() {}
func (*EImportCall) isExpr() {}
type EArray struct {
Items []Expr
CommaAfterSpread logger.Loc
CloseBracketLoc logger.Loc
IsSingleLine bool
IsParenthesized bool
}
type EUnary struct {
Value Expr
Op OpCode
// The expression "typeof (0, x)" must not become "typeof x" if "x"
// is unbound because that could suppress a ReferenceError from "x".
//
// Also if we know a typeof operator was originally an identifier, then
// we know that this typeof operator always has no side effects (even if
// we consider the identifier by itself to have a side effect).
//
// Note that there *is* actually a case where "typeof x" can throw an error:
// when "x" is being referenced inside of its TDZ (temporal dead zone). TDZ
// checks are not yet handled correctly by esbuild, so this possibility is
// currently ignored.
WasOriginallyTypeofIdentifier bool
// Similarly the expression "delete (0, x)" must not become "delete x"
// because that syntax is invalid in strict mode. We also need to make sure
// we don't accidentally change the return value:
//
// Returns false:
// "var a; delete (a)"
// "var a = Object.freeze({b: 1}); delete (a.b)"
// "var a = Object.freeze({b: 1}); delete (a?.b)"
// "var a = Object.freeze({b: 1}); delete (a['b'])"
// "var a = Object.freeze({b: 1}); delete (a?.['b'])"
//
// Returns true:
// "var a; delete (0, a)"
// "var a = Object.freeze({b: 1}); delete (true && a.b)"
// "var a = Object.freeze({b: 1}); delete (false || a?.b)"
// "var a = Object.freeze({b: 1}); delete (null ?? a?.['b'])"
// "var a = Object.freeze({b: 1}); delete (true ? a['b'] : a['b'])"
//
WasOriginallyDeleteOfIdentifierOrPropertyAccess bool
}
type EBinary struct {
Left Expr
Right Expr
Op OpCode
}
type EBoolean struct{ Value bool }
type EMissing struct{}
type ESuper struct{}
type ENull struct{}
type EUndefined struct{}
type EThis struct{}
type ENewTarget struct {
Range logger.Range
}
type EImportMeta struct {
RangeLen int32
}
// These help reduce unnecessary memory allocations
var BMissingShared = &BMissing{}
var EMissingShared = &EMissing{}
var ENullShared = &ENull{}
var ESuperShared = &ESuper{}
var EThisShared = &EThis{}
var EUndefinedShared = &EUndefined{}
var SDebuggerShared = &SDebugger{}
var SEmptyShared = &SEmpty{}
var STypeScriptShared = &STypeScript{}
var STypeScriptSharedWasDeclareClass = &STypeScript{WasDeclareClass: true}
type ENew struct {
Target Expr
Args []Expr
CloseParenLoc logger.Loc
IsMultiLine bool
// 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 CallKind uint8
const (
NormalCall CallKind = iota
DirectEval
TargetWasOriginallyPropertyAccess
)
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
CloseParenLoc logger.Loc
OptionalChain OptionalChain
Kind CallKind
IsMultiLine 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
}
func (a *ECall) HasSameFlagsAs(b *ECall) bool {
return a.OptionalChain == b.OptionalChain &&
a.Kind == b.Kind &&
a.CanBeUnwrappedIfUnused == b.CanBeUnwrappedIfUnused
}
type EDot struct {
Target Expr
Name string
NameLoc logger.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
}
func (a *EDot) HasSameFlagsAs(b *EDot) bool {
return a.OptionalChain == b.OptionalChain &&
a.CanBeRemovedIfUnused == b.CanBeRemovedIfUnused &&
a.CallCanBeUnwrappedIfUnused == b.CallCanBeUnwrappedIfUnused
}
type EIndex struct {
Target Expr
Index Expr
CloseBracketLoc logger.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
}
func (a *EIndex) HasSameFlagsAs(b *EIndex) bool {
return a.OptionalChain == b.OptionalChain &&
a.CanBeRemovedIfUnused == b.CanBeRemovedIfUnused &&
a.CallCanBeUnwrappedIfUnused == b.CallCanBeUnwrappedIfUnused
}
type EArrow struct {
Args []Arg
Body FnBody
IsAsync bool
HasRestArg bool
PreferExpr bool // Use shorthand if true and "Body" is a single return statement
// See: https://github.com/rollup/rollup/pull/5024
HasNoSideEffectsComment bool
}
type EFunction struct{ Fn Fn }
type EClass struct{ Class Class }
type EIdentifier struct {
Ref ast.Ref
// If we're inside a "with" statement, this identifier may be a property
// access. In that case it would be incorrect to remove this identifier since
// the property access may be a getter or setter with side effects.
MustKeepDueToWithStmt bool
// 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 ast.Ref
PreferQuotedKey bool
// If true, this was originally an identifier expression such as "foo". If
// false, this could potentially have been a member access expression such
// as "ns.foo" off of an imported namespace object.
WasOriginallyIdentifier bool
}
// 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 ast.Ref
}
// This represents an internal property name that can be mangled. The symbol
// referenced by this expression should be a "SymbolMangledProp" symbol.
type ENameOfSymbol struct {
Ref ast.Ref
HasPropertyKeyComment bool // If true, a preceding comment contains "@__KEY__"
}
type EJSXElement struct {
TagOrNil Expr
Properties []Property
// Note: This array may contain nil entries. Be careful about nil entries
// when iterating over this array.
//
// Each nil entry corresponds to the "JSXChildExpression_opt" part of the
// grammar (https://facebook.github.io/jsx/#prod-JSXChild):
//
// JSXChild :
// JSXText
// JSXElement
// JSXFragment
// { JSXChildExpression_opt }
//
// This is the "{}" part in "<a>{}</a>". We allow this because some people
// put comments there and then expect to be able to process them from
// esbuild's output. These absent AST nodes are completely omitted when
// JSX is transformed to JS. They are only present when JSX preservation is
// enabled.
NullableChildren []Expr
CloseLoc logger.Loc
IsTagSingleLine bool
}
type ENumber struct{ Value float64 }
type EBigInt struct{ Value string }
type EObject struct {
Properties []Property
CommaAfterSpread logger.Loc
CloseBraceLoc logger.Loc
IsSingleLine bool
IsParenthesized bool
}
type ESpread struct{ Value Expr }
// This is used for both strings and no-substitution template literals to reduce
// the number of cases that need to be checked for string optimization code
type EString struct {
Value []uint16
LegacyOctalLoc logger.Loc
PreferTemplate bool
HasPropertyKeyComment bool // If true, a preceding comment contains "@__KEY__"
ContainsUniqueKey bool // If true, this string must not be wrapped
}
type TemplatePart struct {
Value Expr
TailRaw string // Only use when "TagOrNil" is not nil
TailCooked []uint16 // Only use when "TagOrNil" is nil
TailLoc logger.Loc
}
type ETemplate struct {
TagOrNil Expr
HeadRaw string // Only use when "TagOrNil" is not nil
HeadCooked []uint16 // Only use when "TagOrNil" is nil
Parts []TemplatePart
HeadLoc logger.Loc
LegacyOctalLoc logger.Loc
// If the tag is present, it is expected to be a function and is called. If
// the tag is a syntactic property access, then the value for "this" in the
// function call is the object whose property was accessed (e.g. in "a.b``"
// the value for "this" in "a.b" is "a"). We need to ensure that if "a``"
// ever becomes "b.c``" later on due to optimizations, it is written as
// "(0, b.c)``" to avoid a behavior change.
TagWasOriginallyPropertyAccess bool
}
type ERegExp struct{ Value string }
type EInlinedEnum struct {
Value Expr
Comment string
}
type AnnotationFlags uint8
const (
// This is sort of like an IIFE with a "/* @__PURE__ */" comment except it's an
// inline annotation on an expression itself without the nested scope. Sometimes
// we can't easily introduce a new scope (e.g. if the expression uses "await").
CanBeRemovedIfUnusedFlag AnnotationFlags = 1 << iota
)
func (flags AnnotationFlags) Has(flag AnnotationFlags) bool {
return (flags & flag) != 0
}
type EAnnotation struct {
Value Expr
Flags AnnotationFlags
}
type EAwait struct {
Value Expr
}
type EYield struct {
ValueOrNil Expr
IsStar bool
}
type EIf struct {
Test Expr
Yes Expr
No Expr
}
type ERequireString struct {
ImportRecordIndex uint32
CloseParenLoc logger.Loc
}
type ERequireResolveString struct {
ImportRecordIndex uint32
CloseParenLoc logger.Loc
}
type EImportString struct {
ImportRecordIndex uint32
CloseParenLoc logger.Loc
}
type EImportCall struct {
Expr Expr
OptionsOrNil Expr
CloseParenLoc logger.Loc
}
type Stmt struct {
Data S
Loc logger.Loc
}
// This interface is never called. Its purpose is to encode a variant type in
// Go's type system.
type S interface{ isStmt() }
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() {}
type SBlock struct {
Stmts []Stmt
CloseBraceLoc logger.Loc
}
type SEmpty struct{}
// This is a stand-in for a TypeScript type declaration
type STypeScript struct {
WasDeclareClass bool
}
type SComment struct {
Text string
IsLegalComment bool
}
type SDebugger struct{}
type SDirective struct {
Value []uint16
LegacyOctalLoc logger.Loc
}
type SExportClause struct {
Items []ClauseItem
IsSingleLine bool
}
type SExportFrom struct {
Items []ClauseItem
NamespaceRef ast.Ref
ImportRecordIndex uint32
IsSingleLine bool
}
type SExportDefault struct {
Value Stmt // May be a SExpr or SFunction or SClass
DefaultName ast.LocRef
}
type ExportStarAlias struct {
// Although this alias name starts off as being the same as the statement's
// namespace symbol, it may diverge if the namespace symbol name is minified.
// The original alias name is preserved here to avoid this scenario.
OriginalName string
Loc logger.Loc
}
type SExportStar struct {
Alias *ExportStarAlias
NamespaceRef ast.Ref
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
// This is set to true for automatically-generated expressions that are part
// of class syntax lowering. A single class declaration may end up with many
// generated expressions after it (e.g. class field initializations, a call
// to keep the original value of the "name" property). When this happens we
// can't tell that the class is side-effect free anymore because all of these
// methods mutate the class. We use this annotation for that instead.
IsFromClassOrFnThatCanBeRemovedIfUnused bool
}
type EnumValue struct {
ValueOrNil Expr
Name []uint16
Ref ast.Ref
Loc logger.Loc
}