forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expression.ts
3164 lines (2825 loc) · 97.5 KB
/
expression.ts
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 recursive descent parser operates by defining functions for all
// syntactic elements, and recursively calling those, each function
// advancing the input stream and returning an AST node. Precedence
// of constructs (for example, the fact that `!x[1]` means `!(x[1])`
// instead of `(!x)[1]` is handled by the fact that the parser
// function that parses unary prefix operators is called first, and
// in turn calls the function that parses `[]` subscripts — that
// way, it'll receive the node for `x[1]` already parsed, and wraps
// *that* in the unary operator node.
//
// Acorn uses an [operator precedence parser][opp] to handle binary
// operator precedence, because it is much more compact than using
// the technique outlined above, which uses different, nesting
// functions to specify precedence, for all of the ten binary
// precedence levels that JavaScript defines.
//
// [opp]: http://en.wikipedia.org/wiki/Operator-precedence_parser
import {
tokenCanStartExpression,
tokenIsAssignment,
tokenIsIdentifier,
tokenIsKeywordOrIdentifier,
tokenIsOperator,
tokenIsPostfix,
tokenIsPrefix,
tokenIsRightAssociative,
tokenIsTemplate,
tokenKeywordOrIdentifierIsKeyword,
tokenLabelName,
tokenOperatorPrecedence,
tt,
type TokenType,
} from "../tokenizer/types";
import type * as N from "../types";
import LValParser from "./lval";
import {
isKeyword,
isReservedWord,
isStrictReservedWord,
isStrictBindReservedWord,
isIdentifierStart,
canBeReservedWord,
} from "../util/identifier";
import {
type Position,
createPositionWithColumnOffset,
} from "../util/location";
import * as charCodes from "charcodes";
import {
BIND_OUTSIDE,
BIND_VAR,
SCOPE_ARROW,
SCOPE_CLASS,
SCOPE_DIRECT_SUPER,
SCOPE_FUNCTION,
SCOPE_SUPER,
} from "../util/scopeflags";
import { ExpressionErrors } from "./util";
import {
PARAM_AWAIT,
PARAM_IN,
PARAM_RETURN,
functionFlags,
} from "../util/production-parameter";
import {
newArrowHeadScope,
newAsyncArrowScope,
newExpressionScope,
} from "../util/expression-scope";
import { Errors, type ParseError } from "../parse-error";
import { UnparenthesizedPipeBodyDescriptions } from "../parse-error/pipeline-operator-errors";
import { setInnerComments } from "./comments";
import { cloneIdentifier, type Undone } from "./node";
import type Parser from ".";
import type { SourceType } from "../options";
export default abstract class ExpressionParser extends LValParser {
// Forward-declaration: defined in statement.js
abstract parseBlock(
allowDirectives?: boolean,
createNewLexicalScope?: boolean,
afterBlockParse?: (hasStrictModeDirective: boolean) => void,
): N.BlockStatement;
abstract parseClass(
node: N.Class,
isStatement: boolean,
optionalId?: boolean,
): N.Class;
abstract parseDecorators(allowExport?: boolean): void;
abstract parseFunction<T extends N.NormalFunction>(
node: T,
statement?: number,
allowExpressionBody?: boolean,
isAsync?: boolean,
): T;
abstract parseFunctionParams(node: N.Function, isConstructor?: boolean): void;
abstract parseBlockOrModuleBlockBody(
body: N.Statement[],
directives: N.Directive[] | null | undefined,
topLevel: boolean,
end: TokenType,
afterBlockParse?: (hasStrictModeDirective: boolean) => void,
): void;
abstract parseProgram(
program: N.Program,
end: TokenType,
sourceType?: SourceType,
): N.Program;
// For object literal, check if property __proto__ has been used more than once.
// If the expression is a destructuring assignment, then __proto__ may appear
// multiple times. Otherwise, __proto__ is a duplicated key.
// For record expression, check if property __proto__ exists
checkProto(
prop: N.ObjectMember | N.SpreadElement,
isRecord: boolean | undefined | null,
protoRef: {
used: boolean;
},
refExpressionErrors?: ExpressionErrors | null,
): void {
if (
prop.type === "SpreadElement" ||
this.isObjectMethod(prop) ||
prop.computed ||
// @ts-expect-error prop must be an ObjectProperty
prop.shorthand
) {
return;
}
const key = prop.key;
// It is either an Identifier or a String/NumericLiteral
const name = key.type === "Identifier" ? key.name : key.value;
if (name === "__proto__") {
if (isRecord) {
this.raise(Errors.RecordNoProto, { at: key });
return;
}
if (protoRef.used) {
if (refExpressionErrors) {
// Store the first redefinition's position, otherwise ignore because
// we are parsing ambiguous pattern
if (refExpressionErrors.doubleProtoLoc === null) {
refExpressionErrors.doubleProtoLoc = key.loc.start;
}
} else {
this.raise(Errors.DuplicateProto, { at: key });
}
}
protoRef.used = true;
}
}
shouldExitDescending(expr: N.Expression, potentialArrowAt: number): boolean {
return (
expr.type === "ArrowFunctionExpression" && expr.start === potentialArrowAt
);
}
// Convenience method to parse an Expression only
getExpression(this: Parser): N.Expression & N.ParserOutput {
this.enterInitialScopes();
this.nextToken();
const expr = this.parseExpression();
if (!this.match(tt.eof)) {
this.unexpected();
}
// Unlike parseTopLevel, we need to drain remaining commentStacks
// because the top level node is _not_ Program.
this.finalizeRemainingComments();
expr.comments = this.state.comments;
expr.errors = this.state.errors;
if (this.options.tokens) {
expr.tokens = this.tokens;
}
// @ts-expect-error fixme: refine types
return expr;
}
// ### Expression parsing
// These nest, from the most general expression type at the top to
// 'atomic', nondivisible expression types at the bottom. Most of
// the functions will simply let the function (s) below them parse,
// and, *if* the syntactic construct they handle is present, wrap
// the AST node that the inner parser gave them in another node.
// Parse a full expression.
// - `disallowIn`
// is used to forbid the `in` operator (in for loops initialization expressions)
// When `disallowIn` is true, the production parameter [In] is not present.
// - `refExpressionErrors `
// provides reference for storing '=' operator inside shorthand
// property assignment in contexts where both object expression
// and object pattern might appear (so it's possible to raise
// delayed syntax error at correct position).
parseExpression(
this: Parser,
disallowIn?: boolean,
refExpressionErrors?: ExpressionErrors,
): N.Expression {
if (disallowIn) {
return this.disallowInAnd(() =>
this.parseExpressionBase(refExpressionErrors),
);
}
return this.allowInAnd(() => this.parseExpressionBase(refExpressionErrors));
}
// https://tc39.es/ecma262/#prod-Expression
parseExpressionBase(
this: Parser,
refExpressionErrors?: ExpressionErrors,
): N.Expression {
const startLoc = this.state.startLoc;
const expr = this.parseMaybeAssign(refExpressionErrors);
if (this.match(tt.comma)) {
const node = this.startNodeAt(startLoc);
node.expressions = [expr];
while (this.eat(tt.comma)) {
node.expressions.push(this.parseMaybeAssign(refExpressionErrors));
}
this.toReferencedList(node.expressions);
return this.finishNode(node, "SequenceExpression");
}
return expr;
}
// Set [~In] parameter for assignment expression
parseMaybeAssignDisallowIn(
this: Parser,
refExpressionErrors?: ExpressionErrors | null,
afterLeftParse?: Function,
) {
return this.disallowInAnd(() =>
this.parseMaybeAssign(refExpressionErrors, afterLeftParse),
);
}
// Set [+In] parameter for assignment expression
parseMaybeAssignAllowIn(
this: Parser,
refExpressionErrors?: ExpressionErrors | null,
afterLeftParse?: Function,
) {
return this.allowInAnd(() =>
this.parseMaybeAssign(refExpressionErrors, afterLeftParse),
);
}
// This method is only used by
// the typescript and flow plugins.
setOptionalParametersError(
refExpressionErrors: ExpressionErrors,
resultError?: ParseError<any>,
) {
refExpressionErrors.optionalParametersLoc =
resultError?.loc ?? this.state.startLoc;
}
// Parse an assignment expression. This includes applications of
// operators like `+=`.
// https://tc39.es/ecma262/#prod-AssignmentExpression
parseMaybeAssign(
this: Parser,
refExpressionErrors?: ExpressionErrors | null,
afterLeftParse?: Function,
): N.Expression {
const startLoc = this.state.startLoc;
if (this.isContextual(tt._yield)) {
if (this.prodParam.hasYield) {
let left = this.parseYield();
if (afterLeftParse) {
left = afterLeftParse.call(this, left, startLoc);
}
return left;
}
}
let ownExpressionErrors;
if (refExpressionErrors) {
ownExpressionErrors = false;
} else {
refExpressionErrors = new ExpressionErrors();
ownExpressionErrors = true;
}
const { type } = this.state;
if (type === tt.parenL || tokenIsIdentifier(type)) {
this.state.potentialArrowAt = this.state.start;
}
let left = this.parseMaybeConditional(refExpressionErrors);
if (afterLeftParse) {
left = afterLeftParse.call(this, left, startLoc);
}
if (tokenIsAssignment(this.state.type)) {
const node = this.startNodeAt<N.AssignmentExpression>(startLoc);
const operator = this.state.value;
node.operator = operator;
if (this.match(tt.eq)) {
this.toAssignable(left, /* isLHS */ true);
node.left = left;
const startIndex = startLoc.index;
if (
refExpressionErrors.doubleProtoLoc != null &&
refExpressionErrors.doubleProtoLoc.index >= startIndex
) {
refExpressionErrors.doubleProtoLoc = null; // reset because double __proto__ is valid in assignment expression
}
if (
refExpressionErrors.shorthandAssignLoc != null &&
refExpressionErrors.shorthandAssignLoc.index >= startIndex
) {
refExpressionErrors.shorthandAssignLoc = null; // reset because shorthand default was used correctly
}
if (
refExpressionErrors.privateKeyLoc != null &&
refExpressionErrors.privateKeyLoc.index >= startIndex
) {
this.checkDestructuringPrivate(refExpressionErrors);
refExpressionErrors.privateKeyLoc = null; // reset because `({ #x: x })` is an assignable pattern
}
} else {
node.left = left;
}
this.next();
node.right = this.parseMaybeAssign();
this.checkLVal(left, {
in: this.finishNode(node, "AssignmentExpression"),
});
// @ts-expect-error todo(flow->ts) improve node types
return node;
} else if (ownExpressionErrors) {
this.checkExpressionErrors(refExpressionErrors, true);
}
return left;
}
// Parse a ternary conditional (`?:`) operator.
// https://tc39.es/ecma262/#prod-ConditionalExpression
parseMaybeConditional(
this: Parser,
refExpressionErrors: ExpressionErrors,
): N.Expression {
const startLoc = this.state.startLoc;
const potentialArrowAt = this.state.potentialArrowAt;
const expr = this.parseExprOps(refExpressionErrors);
if (this.shouldExitDescending(expr, potentialArrowAt)) {
return expr;
}
return this.parseConditional(expr, startLoc, refExpressionErrors);
}
parseConditional(
this: Parser,
expr: N.Expression,
startLoc: Position,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
refExpressionErrors?: ExpressionErrors | null,
): N.Expression {
if (this.eat(tt.question)) {
const node = this.startNodeAt(startLoc);
node.test = expr;
node.consequent = this.parseMaybeAssignAllowIn();
this.expect(tt.colon);
node.alternate = this.parseMaybeAssign();
return this.finishNode(node, "ConditionalExpression");
}
return expr;
}
parseMaybeUnaryOrPrivate(
this: Parser,
refExpressionErrors?: ExpressionErrors,
): N.Expression | N.PrivateName {
return this.match(tt.privateName)
? this.parsePrivateName()
: this.parseMaybeUnary(refExpressionErrors);
}
// Start the precedence parser.
// https://tc39.es/ecma262/#prod-ShortCircuitExpression
parseExprOps(
this: Parser,
refExpressionErrors: ExpressionErrors,
): N.Expression {
const startLoc = this.state.startLoc;
const potentialArrowAt = this.state.potentialArrowAt;
const expr = this.parseMaybeUnaryOrPrivate(refExpressionErrors);
if (this.shouldExitDescending(expr, potentialArrowAt)) {
return expr;
}
return this.parseExprOp(expr, startLoc, -1);
}
// Parse binary operators with the operator precedence parsing
// algorithm. `left` is the left-hand side of the operator.
// `minPrec` provides context that allows the function to stop and
// defer further parser to one of its callers when it encounters an
// operator that has a lower precedence than the set it is parsing.
parseExprOp(
this: Parser,
left: N.Expression | N.PrivateName,
leftStartLoc: Position,
minPrec: number,
): N.Expression {
if (this.isPrivateName(left)) {
// https://tc39.es/ecma262/#prod-RelationalExpression
// RelationalExpression [In, Yield, Await]
// [+In] PrivateIdentifier in ShiftExpression[?Yield, ?Await]
const value = this.getPrivateNameSV(left);
if (
minPrec >= tokenOperatorPrecedence(tt._in) ||
!this.prodParam.hasIn ||
!this.match(tt._in)
) {
this.raise(Errors.PrivateInExpectedIn, {
at: left,
identifierName: value,
});
}
this.classScope.usePrivateName(value, left.loc.start);
}
const op = this.state.type;
if (tokenIsOperator(op) && (this.prodParam.hasIn || !this.match(tt._in))) {
let prec = tokenOperatorPrecedence(op);
if (prec > minPrec) {
if (op === tt.pipeline) {
this.expectPlugin("pipelineOperator");
if (this.state.inFSharpPipelineDirectBody) {
return left;
}
this.checkPipelineAtInfixOperator(left, leftStartLoc);
}
const node = this.startNodeAt<N.LogicalExpression | N.BinaryExpression>(
leftStartLoc,
);
node.left = left;
node.operator = this.state.value;
const logical = op === tt.logicalOR || op === tt.logicalAND;
const coalesce = op === tt.nullishCoalescing;
if (coalesce) {
// Handle the precedence of `tt.coalesce` as equal to the range of logical expressions.
// In other words, `node.right` shouldn't contain logical expressions in order to check the mixed error.
prec = tokenOperatorPrecedence(tt.logicalAND);
}
this.next();
if (
op === tt.pipeline &&
this.hasPlugin(["pipelineOperator", { proposal: "minimal" }])
) {
if (this.state.type === tt._await && this.prodParam.hasAwait) {
throw this.raise(Errors.UnexpectedAwaitAfterPipelineBody, {
at: this.state.startLoc,
});
}
}
node.right = this.parseExprOpRightExpr(op, prec);
const finishedNode = this.finishNode(
node,
logical || coalesce ? "LogicalExpression" : "BinaryExpression",
);
/* this check is for all ?? operators
* a ?? b && c for this example
* when op is coalesce and nextOp is logical (&&), throw at the pos of nextOp that it can not be mixed.
* Symmetrically it also throws when op is logical and nextOp is coalesce
*/
const nextOp = this.state.type;
if (
(coalesce && (nextOp === tt.logicalOR || nextOp === tt.logicalAND)) ||
(logical && nextOp === tt.nullishCoalescing)
) {
throw this.raise(Errors.MixingCoalesceWithLogical, {
at: this.state.startLoc,
});
}
return this.parseExprOp(finishedNode, leftStartLoc, minPrec);
}
}
return left;
}
// Helper function for `parseExprOp`. Parse the right-hand side of binary-
// operator expressions, then apply any operator-specific functions.
parseExprOpRightExpr(
this: Parser,
op: TokenType,
prec: number,
): N.Expression {
const startLoc = this.state.startLoc;
switch (op) {
case tt.pipeline:
switch (this.getPluginOption("pipelineOperator", "proposal")) {
case "hack":
return this.withTopicBindingContext(() => {
return this.parseHackPipeBody();
});
case "smart":
return this.withTopicBindingContext(() => {
if (this.prodParam.hasYield && this.isContextual(tt._yield)) {
throw this.raise(Errors.PipeBodyIsTighter, {
at: this.state.startLoc,
});
}
return this.parseSmartPipelineBodyInStyle(
this.parseExprOpBaseRightExpr(op, prec),
startLoc,
);
});
case "fsharp":
return this.withSoloAwaitPermittingContext(() => {
return this.parseFSharpPipelineBody(prec);
});
}
// Falls through.
default:
return this.parseExprOpBaseRightExpr(op, prec);
}
}
// Helper function for `parseExprOpRightExpr`. Parse the right-hand side of
// binary-operator expressions without applying any operator-specific functions.
parseExprOpBaseRightExpr(
this: Parser,
op: TokenType,
prec: number,
): N.Expression {
const startLoc = this.state.startLoc;
return this.parseExprOp(
this.parseMaybeUnaryOrPrivate(),
startLoc,
tokenIsRightAssociative(op) ? prec - 1 : prec,
);
}
parseHackPipeBody(this: Parser): N.Expression {
const { startLoc } = this.state;
const body = this.parseMaybeAssign();
const requiredParentheses = UnparenthesizedPipeBodyDescriptions.has(
// @ts-expect-error TS2345: Argument of type 'string' is not assignable to parameter of type '"ArrowFunctionExpression" | "YieldExpression" | "AssignmentExpression" | "ConditionalExpression"'.
body.type,
);
// TODO: Check how to handle type casts in Flow and TS once they are supported
if (requiredParentheses && !body.extra?.parenthesized) {
this.raise(Errors.PipeUnparenthesizedBody, {
at: startLoc,
// @ts-expect-error TS2322: Type 'string' is not assignable to type '"AssignmentExpression" | "ArrowFunctionExpression" | "ConditionalExpression" | "YieldExpression"'.
type: body.type,
});
}
if (!this.topicReferenceWasUsedInCurrentContext()) {
// A Hack pipe body must use the topic reference at least once.
this.raise(Errors.PipeTopicUnused, { at: startLoc });
}
return body;
}
checkExponentialAfterUnary(
node: N.AwaitExpression | Undone<N.UnaryExpression>,
) {
if (this.match(tt.exponent)) {
this.raise(Errors.UnexpectedTokenUnaryExponentiation, {
at: node.argument,
});
}
}
// Parse unary operators, both prefix and postfix.
// https://tc39.es/ecma262/#prod-UnaryExpression
parseMaybeUnary(
this: Parser,
refExpressionErrors?: ExpressionErrors | null,
sawUnary?: boolean,
): N.Expression {
const startLoc = this.state.startLoc;
const isAwait = this.isContextual(tt._await);
if (isAwait && this.isAwaitAllowed()) {
this.next();
const expr = this.parseAwait(startLoc);
if (!sawUnary) this.checkExponentialAfterUnary(expr);
return expr;
}
const update = this.match(tt.incDec);
const node = this.startNode<N.UnaryExpression | N.UpdateExpression>();
if (tokenIsPrefix(this.state.type)) {
node.operator = this.state.value;
node.prefix = true;
if (this.match(tt._throw)) {
this.expectPlugin("throwExpressions");
}
const isDelete = this.match(tt._delete);
this.next();
node.argument = this.parseMaybeUnary(null, true);
this.checkExpressionErrors(refExpressionErrors, true);
if (this.state.strict && isDelete) {
const arg = node.argument;
if (arg.type === "Identifier") {
this.raise(Errors.StrictDelete, { at: node });
} else if (this.hasPropertyAsPrivateName(arg)) {
this.raise(Errors.DeletePrivateField, { at: node });
}
}
if (!update) {
if (!sawUnary) {
this.checkExponentialAfterUnary(node as Undone<N.UnaryExpression>);
}
return this.finishNode(node, "UnaryExpression");
}
}
const expr = this.parseUpdate(
// @ts-expect-error using "Undone" node as "done"
node,
update,
refExpressionErrors,
);
if (isAwait) {
const { type } = this.state;
const startsExpr = this.hasPlugin("v8intrinsic")
? tokenCanStartExpression(type)
: tokenCanStartExpression(type) && !this.match(tt.modulo);
if (startsExpr && !this.isAmbiguousAwait()) {
this.raiseOverwrite(Errors.AwaitNotInAsyncContext, { at: startLoc });
return this.parseAwait(startLoc);
}
}
return expr;
}
// https://tc39.es/ecma262/#prod-UpdateExpression
parseUpdate(
this: Parser,
node: N.Expression,
update: boolean,
refExpressionErrors?: ExpressionErrors | null,
): N.Expression {
if (update) {
// @ts-expect-error Type 'Node' is missing the following properties from type 'Undone<UpdateExpression>': prefix, operator, argument
const updateExpressionNode = node as Undone<N.UpdateExpression>;
this.checkLVal(updateExpressionNode.argument, {
in: this.finishNode(updateExpressionNode, "UpdateExpression"),
});
return node;
}
const startLoc = this.state.startLoc;
let expr = this.parseExprSubscripts(refExpressionErrors);
if (this.checkExpressionErrors(refExpressionErrors, false)) return expr;
while (tokenIsPostfix(this.state.type) && !this.canInsertSemicolon()) {
const node = this.startNodeAt<N.UpdateExpression>(startLoc);
node.operator = this.state.value;
node.prefix = false;
node.argument = expr;
this.next();
this.checkLVal(expr, {
in: (expr = this.finishNode(node, "UpdateExpression")),
});
}
return expr;
}
// Parse call, dot, and `[]`-subscript expressions.
// https://tc39.es/ecma262/#prod-LeftHandSideExpression
parseExprSubscripts(
this: Parser,
refExpressionErrors?: ExpressionErrors | null,
): N.Expression {
const startLoc = this.state.startLoc;
const potentialArrowAt = this.state.potentialArrowAt;
const expr = this.parseExprAtom(refExpressionErrors);
if (this.shouldExitDescending(expr, potentialArrowAt)) {
return expr;
}
return this.parseSubscripts(expr, startLoc);
}
parseSubscripts(
this: Parser,
base: N.Expression,
startLoc: Position,
noCalls?: boolean | null,
): N.Expression {
const state = {
optionalChainMember: false,
maybeAsyncArrow: this.atPossibleAsyncArrow(base),
stop: false,
};
do {
base = this.parseSubscript(base, startLoc, noCalls, state);
// After parsing a subscript, this isn't "async" for sure.
state.maybeAsyncArrow = false;
} while (!state.stop);
return base;
}
/**
* @param state Set 'state.stop = true' to indicate that we should stop parsing subscripts.
* state.optionalChainMember to indicate that the member is currently in OptionalChain
*/
parseSubscript(
this: Parser,
base: N.Expression,
startLoc: Position,
noCalls: boolean | undefined | null,
state: N.ParseSubscriptState,
): N.Expression {
const { type } = this.state;
if (!noCalls && type === tt.doubleColon) {
return this.parseBind(base, startLoc, noCalls, state);
} else if (tokenIsTemplate(type)) {
return this.parseTaggedTemplateExpression(base, startLoc, state);
}
let optional = false;
if (type === tt.questionDot) {
if (noCalls && this.lookaheadCharCode() === charCodes.leftParenthesis) {
// stop at `?.` when parsing `new a?.()`
state.stop = true;
return base;
}
state.optionalChainMember = optional = true;
this.next();
}
if (!noCalls && this.match(tt.parenL)) {
return this.parseCoverCallAndAsyncArrowHead(
base,
startLoc,
state,
optional,
);
} else {
const computed = this.eat(tt.bracketL);
if (computed || optional || this.eat(tt.dot)) {
return this.parseMember(base, startLoc, state, computed, optional);
} else {
state.stop = true;
return base;
}
}
}
// base[?Yield, ?Await] [ Expression[+In, ?Yield, ?Await] ]
// base[?Yield, ?Await] . IdentifierName
// base[?Yield, ?Await] . PrivateIdentifier
// where `base` is one of CallExpression, MemberExpression and OptionalChain
parseMember(
this: Parser,
base: N.Expression,
startLoc: Position,
state: N.ParseSubscriptState,
computed: boolean,
optional: boolean,
): N.OptionalMemberExpression | N.MemberExpression {
const node = this.startNodeAt<
N.OptionalMemberExpression | N.MemberExpression
>(startLoc);
node.object = base;
node.computed = computed;
if (computed) {
node.property = this.parseExpression();
this.expect(tt.bracketR);
} else if (this.match(tt.privateName)) {
if (base.type === "Super") {
this.raise(Errors.SuperPrivateField, { at: startLoc });
}
this.classScope.usePrivateName(this.state.value, this.state.startLoc);
node.property = this.parsePrivateName();
} else {
node.property = this.parseIdentifier(true);
}
if (state.optionalChainMember) {
(node as N.OptionalMemberExpression).optional = optional;
return this.finishNode(node, "OptionalMemberExpression");
} else {
return this.finishNode(node, "MemberExpression");
}
}
// https://github.com/tc39/proposal-bind-operator#syntax
parseBind(
this: Parser,
base: N.Expression,
startLoc: Position,
noCalls: boolean | undefined | null,
state: N.ParseSubscriptState,
): N.Expression {
const node = this.startNodeAt(startLoc);
node.object = base;
this.next(); // eat '::'
node.callee = this.parseNoCallExpr();
state.stop = true;
return this.parseSubscripts(
this.finishNode(node, "BindExpression"),
startLoc,
noCalls,
);
}
// https://tc39.es/ecma262/#prod-CoverCallExpressionAndAsyncArrowHead
// CoverCallExpressionAndAsyncArrowHead
// CallExpression[?Yield, ?Await] Arguments[?Yield, ?Await]
// OptionalChain[?Yield, ?Await] Arguments[?Yield, ?Await]
parseCoverCallAndAsyncArrowHead(
this: Parser,
base: N.Expression,
startLoc: Position,
state: N.ParseSubscriptState,
optional: boolean,
): N.Expression {
const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;
let refExpressionErrors: ExpressionErrors | null = null;
this.state.maybeInArrowParameters = true;
this.next(); // eat `(`
const node = this.startNodeAt<N.CallExpression | N.OptionalCallExpression>(
startLoc,
);
node.callee = base;
const { maybeAsyncArrow, optionalChainMember } = state;
if (maybeAsyncArrow) {
this.expressionScope.enter(newAsyncArrowScope());
refExpressionErrors = new ExpressionErrors();
}
if (optionalChainMember) {
// @ts-expect-error when optionalChainMember is true, node must be an optional call
node.optional = optional;
}
if (optional) {
node.arguments = this.parseCallExpressionArguments(tt.parenR);
} else {
node.arguments = this.parseCallExpressionArguments(
tt.parenR,
base.type === "Import",
base.type !== "Super",
// @ts-expect-error todo(flow->ts)
node,
refExpressionErrors,
);
}
let finishedNode:
| N.CallExpression
| N.OptionalCallExpression
| N.ArrowFunctionExpression = this.finishCallExpression(
node,
optionalChainMember,
);
if (maybeAsyncArrow && this.shouldParseAsyncArrow() && !optional) {
/*:: invariant(refExpressionErrors != null) */
state.stop = true;
this.checkDestructuringPrivate(refExpressionErrors);
this.expressionScope.validateAsPattern();
this.expressionScope.exit();
finishedNode = this.parseAsyncArrowFromCallExpression(
this.startNodeAt<N.ArrowFunctionExpression>(startLoc),
finishedNode as N.CallExpression,
);
} else {
if (maybeAsyncArrow) {
this.checkExpressionErrors(refExpressionErrors, true);
this.expressionScope.exit();
}
this.toReferencedArguments(finishedNode);
}
this.state.maybeInArrowParameters = oldMaybeInArrowParameters;
return finishedNode;
}
toReferencedArguments(
node: N.CallExpression | N.OptionalCallExpression,
isParenthesizedExpr?: boolean,
) {
this.toReferencedListDeep(node.arguments, isParenthesizedExpr);
}
// MemberExpression [?Yield, ?Await] TemplateLiteral[?Yield, ?Await, +Tagged]
// CallExpression [?Yield, ?Await] TemplateLiteral[?Yield, ?Await, +Tagged]
parseTaggedTemplateExpression(
this: Parser,
base: N.Expression,
startLoc: Position,
state: N.ParseSubscriptState,
): N.TaggedTemplateExpression {
const node = this.startNodeAt<N.TaggedTemplateExpression>(startLoc);
node.tag = base;
node.quasi = this.parseTemplate(true);
if (state.optionalChainMember) {
this.raise(Errors.OptionalChainingNoTemplate, { at: startLoc });
}
return this.finishNode(node, "TaggedTemplateExpression");
}
atPossibleAsyncArrow(base: N.Expression): boolean {
return (
base.type === "Identifier" &&
base.name === "async" &&
this.state.lastTokEndLoc.index === base.end &&
!this.canInsertSemicolon() &&
// check there are no escape sequences, such as \u{61}sync
base.end - base.start === 5 &&
base.start === this.state.potentialArrowAt
);
}
finishCallExpression<T extends N.CallExpression | N.OptionalCallExpression>(
node: Undone<T>,
optional: boolean,
): T {
if (node.callee.type === "Import") {
if (node.arguments.length === 2) {
if (process.env.BABEL_8_BREAKING) {
this.expectPlugin("importAssertions");
} else {
if (!this.hasPlugin("moduleAttributes")) {
this.expectPlugin("importAssertions");
}
}
}
if (node.arguments.length === 0 || node.arguments.length > 2) {
this.raise(Errors.ImportCallArity, {
at: node,
maxArgumentCount:
this.hasPlugin("importAssertions") ||
this.hasPlugin("moduleAttributes")
? 2
: 1,
});
} else {
for (const arg of node.arguments) {
if (arg.type === "SpreadElement") {
this.raise(Errors.ImportCallSpreadArgument, { at: arg });
}
}
}
}
return this.finishNode(
node,
optional ? "OptionalCallExpression" : "CallExpression",
);
}