@sanity/cli 3.80.2-sdk-265.17 → 3.81.1-sdk-295.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/_chunks-cjs/cli.js +45 -32
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/package.json +11 -11
package/lib/_chunks-cjs/cli.js
CHANGED
@@ -37573,7 +37573,6 @@ function requireLib$1() {
|
|
37573
37573
|
AwaitExpressionFormalParameter: "'await' is not allowed in async function parameters.",
|
37574
37574
|
AwaitUsingNotInAsyncContext: "'await using' is only allowed within async functions and at the top levels of modules.",
|
37575
37575
|
AwaitNotInAsyncContext: "'await' is only allowed within async functions and at the top levels of modules.",
|
37576
|
-
AwaitNotInAsyncFunction: "'await' is only allowed within async functions.",
|
37577
37576
|
BadGetterArity: "A 'get' accessor must not have any formal parameters.",
|
37578
37577
|
BadSetterArity: "A 'set' accessor must have exactly one formal parameter.",
|
37579
37578
|
BadSetterRestParameter: "A 'set' accessor function argument must not be a rest parameter.",
|
@@ -37778,6 +37777,7 @@ function requireLib$1() {
|
|
37778
37777
|
}) => `Identifier '${identifierName}' has already been declared.`,
|
37779
37778
|
YieldBindingIdentifier: "Can not use 'yield' as identifier inside a generator.",
|
37780
37779
|
YieldInParameter: "Yield expression is not allowed in formal parameters.",
|
37780
|
+
YieldNotInGeneratorFunction: "'yield' is only allowed within generator functions.",
|
37781
37781
|
ZeroDigitNumericSeparator: "Numeric separator can not be used after leading 0."
|
37782
37782
|
}, StrictModeErrors = {
|
37783
37783
|
StrictDelete: "Deleting local variable in strict mode.",
|
@@ -37901,6 +37901,7 @@ function requireLib$1() {
|
|
37901
37901
|
allowImportExportEverywhere: !1,
|
37902
37902
|
allowSuperOutsideMethod: !1,
|
37903
37903
|
allowUndeclaredExports: !1,
|
37904
|
+
allowYieldOutsideFunction: !1,
|
37904
37905
|
plugins: [],
|
37905
37906
|
strictMode: null,
|
37906
37907
|
ranges: !1,
|
@@ -37940,7 +37941,7 @@ function requireLib$1() {
|
|
37940
37941
|
var estree = (superClass) => class extends superClass {
|
37941
37942
|
parse() {
|
37942
37943
|
const file = toESTreeLocation(super.parse());
|
37943
|
-
return this.optionFlags &
|
37944
|
+
return this.optionFlags & 256 && (file.tokens = file.tokens.map(toESTreeLocation)), file;
|
37944
37945
|
}
|
37945
37946
|
parseRegExpLiteral({
|
37946
37947
|
pattern,
|
@@ -38050,6 +38051,10 @@ function requireLib$1() {
|
|
38050
38051
|
const propertyNode = super.parseClassPrivateProperty(...args);
|
38051
38052
|
return this.getPluginOption("estree", "classFeatures") && (propertyNode.type = "PropertyDefinition", propertyNode.computed = !1), propertyNode;
|
38052
38053
|
}
|
38054
|
+
parseClassAccessorProperty(node) {
|
38055
|
+
const accessorPropertyNode = super.parseClassAccessorProperty(node);
|
38056
|
+
return this.getPluginOption("estree", "classFeatures") && (accessorPropertyNode.type = "AccessorProperty"), accessorPropertyNode;
|
38057
|
+
}
|
38053
38058
|
parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor) {
|
38054
38059
|
const node = super.parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor);
|
38055
38060
|
return node && (node.type = "Property", node.kind === "method" && (node.kind = "init"), node.shorthand = !1), node;
|
@@ -39364,7 +39369,7 @@ function requireLib$1() {
|
|
39364
39369
|
class Tokenizer extends CommentsParser {
|
39365
39370
|
constructor(options2, input2) {
|
39366
39371
|
super(), this.isLookahead = void 0, this.tokens = [], this.errorHandlers_readInt = {
|
39367
|
-
invalidDigit: (pos2, lineStart, curLine, radix) => this.optionFlags &
|
39372
|
+
invalidDigit: (pos2, lineStart, curLine, radix) => this.optionFlags & 2048 ? (this.raise(Errors.InvalidDigit, buildPosition(pos2, lineStart, curLine), {
|
39368
39373
|
radix
|
39369
39374
|
}), !0) : !1,
|
39370
39375
|
numericSeparatorInEscapeSequence: this.errorBuilder(Errors.NumericSeparatorInEscapeSequence),
|
@@ -39390,7 +39395,7 @@ function requireLib$1() {
|
|
39390
39395
|
this.tokens.length = this.state.tokensLength, this.tokens.push(token2), ++this.state.tokensLength;
|
39391
39396
|
}
|
39392
39397
|
next() {
|
39393
|
-
this.checkKeywordEscapes(), this.optionFlags &
|
39398
|
+
this.checkKeywordEscapes(), this.optionFlags & 256 && this.pushToken(new Token(this.state)), this.state.lastTokEndLoc = this.state.endLoc, this.state.lastTokStartLoc = this.state.startLoc, this.nextToken();
|
39394
39399
|
}
|
39395
39400
|
eat(type2) {
|
39396
39401
|
return this.match(type2) ? (this.next(), !0) : !1;
|
@@ -39475,7 +39480,7 @@ function requireLib$1() {
|
|
39475
39480
|
end: this.sourceToOffsetPos(end + commentEnd.length),
|
39476
39481
|
loc: new SourceLocation(startLoc, this.state.curPosition())
|
39477
39482
|
};
|
39478
|
-
return this.optionFlags &
|
39483
|
+
return this.optionFlags & 256 && this.pushToken(comment), comment;
|
39479
39484
|
}
|
39480
39485
|
skipLineComment(startSkip) {
|
39481
39486
|
const start = this.state.pos;
|
@@ -39493,10 +39498,10 @@ function requireLib$1() {
|
|
39493
39498
|
end: this.sourceToOffsetPos(end),
|
39494
39499
|
loc: new SourceLocation(startLoc, this.state.curPosition())
|
39495
39500
|
};
|
39496
|
-
return this.optionFlags &
|
39501
|
+
return this.optionFlags & 256 && this.pushToken(comment), comment;
|
39497
39502
|
}
|
39498
39503
|
skipSpace() {
|
39499
|
-
const spaceStart = this.state.pos, comments2 = this.optionFlags &
|
39504
|
+
const spaceStart = this.state.pos, comments2 = this.optionFlags & 4096 ? [] : null;
|
39500
39505
|
loop: for (; this.state.pos < this.length; ) {
|
39501
39506
|
const ch = this.input.charCodeAt(this.state.pos);
|
39502
39507
|
switch (ch) {
|
@@ -39531,14 +39536,14 @@ function requireLib$1() {
|
|
39531
39536
|
default:
|
39532
39537
|
if (isWhitespace(ch))
|
39533
39538
|
++this.state.pos;
|
39534
|
-
else if (ch === 45 && !this.inModule && this.optionFlags &
|
39539
|
+
else if (ch === 45 && !this.inModule && this.optionFlags & 8192) {
|
39535
39540
|
const pos2 = this.state.pos;
|
39536
39541
|
if (this.input.charCodeAt(pos2 + 1) === 45 && this.input.charCodeAt(pos2 + 2) === 62 && (spaceStart === 0 || this.state.lineStart > spaceStart)) {
|
39537
39542
|
const comment = this.skipLineComment(3);
|
39538
39543
|
comment !== void 0 && (this.addComment(comment), comments2?.push(comment));
|
39539
39544
|
} else
|
39540
39545
|
break loop;
|
39541
|
-
} else if (ch === 60 && !this.inModule && this.optionFlags &
|
39546
|
+
} else if (ch === 60 && !this.inModule && this.optionFlags & 8192) {
|
39542
39547
|
const pos2 = this.state.pos;
|
39543
39548
|
if (this.input.charCodeAt(pos2 + 1) === 33 && this.input.charCodeAt(pos2 + 2) === 45 && this.input.charCodeAt(pos2 + 3) === 45) {
|
39544
39549
|
const comment = this.skipLineComment(4);
|
@@ -40016,7 +40021,7 @@ function requireLib$1() {
|
|
40016
40021
|
}
|
40017
40022
|
raise(toParseError, at, details = {}) {
|
40018
40023
|
const loc = at instanceof Position ? at : at.loc.start, error2 = toParseError(loc, details);
|
40019
|
-
if (!(this.optionFlags &
|
40024
|
+
if (!(this.optionFlags & 2048)) throw error2;
|
40020
40025
|
return this.isLookahead || this.state.errors.push(error2), error2;
|
40021
40026
|
}
|
40022
40027
|
raiseOverwrite(toParseError, at, details = {}) {
|
@@ -40376,7 +40381,7 @@ function requireLib$1() {
|
|
40376
40381
|
}
|
40377
40382
|
enterInitialScopes() {
|
40378
40383
|
let paramFlags = 0;
|
40379
|
-
this.inModule && (paramFlags |= 2), this.scope.enter(1), this.prodParam.enter(paramFlags);
|
40384
|
+
this.inModule && (paramFlags |= 2), this.optionFlags & 32 && (paramFlags |= 1), this.scope.enter(1), this.prodParam.enter(paramFlags);
|
40380
40385
|
}
|
40381
40386
|
checkDestructuringPrivate(refExpressionErrors) {
|
40382
40387
|
const {
|
@@ -40392,7 +40397,7 @@ function requireLib$1() {
|
|
40392
40397
|
}
|
40393
40398
|
class Node {
|
40394
40399
|
constructor(parser2, pos2, loc) {
|
40395
|
-
this.type = "", this.start = pos2, this.end = 0, this.loc = new SourceLocation(loc), parser2?.optionFlags &
|
40400
|
+
this.type = "", this.start = pos2, this.end = 0, this.loc = new SourceLocation(loc), parser2?.optionFlags & 128 && (this.range = [pos2, 0]), parser2 != null && parser2.filename && (this.loc.filename = parser2.filename);
|
40396
40401
|
}
|
40397
40402
|
}
|
40398
40403
|
const NodePrototype = Node.prototype;
|
@@ -40448,13 +40453,13 @@ function requireLib$1() {
|
|
40448
40453
|
return this.finishNodeAt(node, type2, this.state.lastTokEndLoc);
|
40449
40454
|
}
|
40450
40455
|
finishNodeAt(node, type2, endLoc) {
|
40451
|
-
return node.type = type2, node.end = endLoc.index, node.loc.end = endLoc, this.optionFlags &
|
40456
|
+
return node.type = type2, node.end = endLoc.index, node.loc.end = endLoc, this.optionFlags & 128 && (node.range[1] = endLoc.index), this.optionFlags & 4096 && this.processComment(node), node;
|
40452
40457
|
}
|
40453
40458
|
resetStartLocation(node, startLoc) {
|
40454
|
-
node.start = startLoc.index, node.loc.start = startLoc, this.optionFlags &
|
40459
|
+
node.start = startLoc.index, node.loc.start = startLoc, this.optionFlags & 128 && (node.range[0] = startLoc.index);
|
40455
40460
|
}
|
40456
40461
|
resetEndLocation(node, endLoc = this.state.lastTokEndLoc) {
|
40457
|
-
node.end = endLoc.index, node.loc.end = endLoc, this.optionFlags &
|
40462
|
+
node.end = endLoc.index, node.loc.end = endLoc, this.optionFlags & 128 && (node.range[1] = endLoc.index);
|
40458
40463
|
}
|
40459
40464
|
resetStartLocationFromNode(node, locationNode) {
|
40460
40465
|
this.resetStartLocation(node, locationNode.loc.start);
|
@@ -44494,7 +44499,7 @@ function requireLib$1() {
|
|
44494
44499
|
getExpression() {
|
44495
44500
|
this.enterInitialScopes(), this.nextToken();
|
44496
44501
|
const expr = this.parseExpression();
|
44497
|
-
return this.match(140) || this.unexpected(), this.finalizeRemainingComments(), expr.comments = this.comments, expr.errors = this.state.errors, this.optionFlags &
|
44502
|
+
return this.match(140) || this.unexpected(), this.finalizeRemainingComments(), expr.comments = this.comments, expr.errors = this.state.errors, this.optionFlags & 256 && (expr.tokens = this.tokens), expr;
|
44498
44503
|
}
|
44499
44504
|
parseExpression(disallowIn, refExpressionErrors) {
|
44500
44505
|
return disallowIn ? this.disallowInAnd(() => this.parseExpressionBase(refExpressionErrors)) : this.allowInAnd(() => this.parseExpressionBase(refExpressionErrors));
|
@@ -44519,9 +44524,10 @@ function requireLib$1() {
|
|
44519
44524
|
refExpressionErrors.optionalParametersLoc = this.state.startLoc;
|
44520
44525
|
}
|
44521
44526
|
parseMaybeAssign(refExpressionErrors, afterLeftParse) {
|
44522
|
-
const startLoc = this.state.startLoc;
|
44523
|
-
if (
|
44524
|
-
|
44527
|
+
const startLoc = this.state.startLoc, isYield = this.isContextual(108);
|
44528
|
+
if (isYield && this.prodParam.hasYield) {
|
44529
|
+
this.next();
|
44530
|
+
let left2 = this.parseYield(startLoc);
|
44525
44531
|
return afterLeftParse && (left2 = afterLeftParse.call(this, left2, startLoc)), left2;
|
44526
44532
|
}
|
44527
44533
|
let ownExpressionErrors;
|
@@ -44541,6 +44547,13 @@ function requireLib$1() {
|
|
44541
44547
|
node.left = left;
|
44542
44548
|
return this.next(), node.right = this.parseMaybeAssign(), this.checkLVal(left, this.finishNode(node, "AssignmentExpression")), node;
|
44543
44549
|
} else ownExpressionErrors && this.checkExpressionErrors(refExpressionErrors, !0);
|
44550
|
+
if (isYield) {
|
44551
|
+
const {
|
44552
|
+
type: type3
|
44553
|
+
} = this.state;
|
44554
|
+
if ((this.hasPlugin("v8intrinsic") ? tokenCanStartExpression(type3) : tokenCanStartExpression(type3) && !this.match(54)) && !this.isAmbiguousPrefixOrIdentifier())
|
44555
|
+
return this.raiseOverwrite(Errors.YieldNotInGeneratorFunction, startLoc), this.parseYield(startLoc);
|
44556
|
+
}
|
44544
44557
|
return left;
|
44545
44558
|
}
|
44546
44559
|
parseMaybeConditional(refExpressionErrors) {
|
@@ -44652,7 +44665,7 @@ function requireLib$1() {
|
|
44652
44665
|
const {
|
44653
44666
|
type: type2
|
44654
44667
|
} = this.state;
|
44655
|
-
if ((this.hasPlugin("v8intrinsic") ? tokenCanStartExpression(type2) : tokenCanStartExpression(type2) && !this.match(54)) && !this.
|
44668
|
+
if ((this.hasPlugin("v8intrinsic") ? tokenCanStartExpression(type2) : tokenCanStartExpression(type2) && !this.match(54)) && !this.isAmbiguousPrefixOrIdentifier())
|
44656
44669
|
return this.raiseOverwrite(Errors.AwaitNotInAsyncContext, startLoc), this.parseAwait(startLoc);
|
44657
44670
|
}
|
44658
44671
|
return expr;
|
@@ -44783,7 +44796,7 @@ function requireLib$1() {
|
|
44783
44796
|
case 79:
|
44784
44797
|
return this.parseSuper();
|
44785
44798
|
case 83:
|
44786
|
-
return node = this.startNode(), this.next(), this.match(16) ? this.parseImportMetaProperty(node) : this.match(10) ? this.optionFlags &
|
44799
|
+
return node = this.startNode(), this.next(), this.match(16) ? this.parseImportMetaProperty(node) : this.match(10) ? this.optionFlags & 512 ? this.parseImportCall(node) : this.finishNode(node, "Import") : (this.raise(Errors.UnsupportedImport, this.state.lastTokStartLoc), this.finishNode(node, "Import"));
|
44787
44800
|
case 78:
|
44788
44801
|
return node = this.startNode(), this.next(), this.finishNode(node, "ThisExpression");
|
44789
44802
|
case 90:
|
@@ -44952,7 +44965,7 @@ function requireLib$1() {
|
|
44952
44965
|
this.inModule || this.raise(Errors.ImportMetaOutsideModule, id), this.sawUnambiguousESM = !0;
|
44953
44966
|
else if (this.isContextual(105) || this.isContextual(97)) {
|
44954
44967
|
const isSource = this.isContextual(105);
|
44955
|
-
if (this.expectPlugin(isSource ? "sourcePhaseImports" : "deferredImportEvaluation"), !(this.optionFlags &
|
44968
|
+
if (this.expectPlugin(isSource ? "sourcePhaseImports" : "deferredImportEvaluation"), !(this.optionFlags & 512))
|
44956
44969
|
throw this.raise(Errors.DynamicImportPhaseRequiresImportExpressions, this.state.startLoc, {
|
44957
44970
|
phase: this.state.value
|
44958
44971
|
});
|
@@ -45019,7 +45032,7 @@ function requireLib$1() {
|
|
45019
45032
|
return canBeArrow && this.shouldParseArrow(exprList) && (arrowNode = this.parseArrow(arrowNode)) ? (this.checkDestructuringPrivate(refExpressionErrors), this.expressionScope.validateAsPattern(), this.expressionScope.exit(), this.parseArrowExpression(arrowNode, exprList, !1), arrowNode) : (this.expressionScope.exit(), exprList.length || this.unexpected(this.state.lastTokStartLoc), optionalCommaStartLoc && this.unexpected(optionalCommaStartLoc), spreadStartLoc && this.unexpected(spreadStartLoc), this.checkExpressionErrors(refExpressionErrors, !0), this.toReferencedListDeep(exprList, !0), exprList.length > 1 ? (val = this.startNodeAt(innerStartLoc), val.expressions = exprList, this.finishNode(val, "SequenceExpression"), this.resetEndLocation(val, innerEndLoc)) : val = exprList[0], this.wrapParenthesis(startLoc, val));
|
45020
45033
|
}
|
45021
45034
|
wrapParenthesis(startLoc, expression) {
|
45022
|
-
if (!(this.optionFlags &
|
45035
|
+
if (!(this.optionFlags & 1024))
|
45023
45036
|
return this.addExtra(expression, "parenthesized", !0), this.addExtra(expression, "parenStart", startLoc.index), this.takeSurroundingComments(expression, startLoc.index, this.state.lastTokEndLoc.index), expression;
|
45024
45037
|
const parenExpression = this.startNodeAt(startLoc);
|
45025
45038
|
return parenExpression.expression = expression, this.finishNode(parenExpression, "ParenthesizedExpression");
|
@@ -45353,18 +45366,18 @@ function requireLib$1() {
|
|
45353
45366
|
}
|
45354
45367
|
parseAwait(startLoc) {
|
45355
45368
|
const node = this.startNodeAt(startLoc);
|
45356
|
-
return this.expressionScope.recordParameterInitializerError(Errors.AwaitExpressionFormalParameter, node), this.eat(55) && this.raise(Errors.ObsoleteAwaitStar, node), !this.scope.inFunction && !(this.optionFlags & 1) && (this.
|
45369
|
+
return this.expressionScope.recordParameterInitializerError(Errors.AwaitExpressionFormalParameter, node), this.eat(55) && this.raise(Errors.ObsoleteAwaitStar, node), !this.scope.inFunction && !(this.optionFlags & 1) && (this.isAmbiguousPrefixOrIdentifier() ? this.ambiguousScriptDifferentAst = !0 : this.sawUnambiguousESM = !0), this.state.soloAwait || (node.argument = this.parseMaybeUnary(null, !0)), this.finishNode(node, "AwaitExpression");
|
45357
45370
|
}
|
45358
|
-
|
45371
|
+
isAmbiguousPrefixOrIdentifier() {
|
45359
45372
|
if (this.hasPrecedingLineBreak()) return !0;
|
45360
45373
|
const {
|
45361
45374
|
type: type2
|
45362
45375
|
} = this.state;
|
45363
45376
|
return type2 === 53 || type2 === 10 || type2 === 0 || tokenIsTemplate(type2) || type2 === 102 && !this.state.containsEsc || type2 === 138 || type2 === 56 || this.hasPlugin("v8intrinsic") && type2 === 54;
|
45364
45377
|
}
|
45365
|
-
parseYield() {
|
45366
|
-
const node = this.
|
45367
|
-
this.expressionScope.recordParameterInitializerError(Errors.YieldInParameter, node)
|
45378
|
+
parseYield(startLoc) {
|
45379
|
+
const node = this.startNodeAt(startLoc);
|
45380
|
+
this.expressionScope.recordParameterInitializerError(Errors.YieldInParameter, node);
|
45368
45381
|
let delegating = !1, argument = null;
|
45369
45382
|
if (!this.hasPrecedingLineBreak())
|
45370
45383
|
switch (delegating = this.eat(55), this.state.type) {
|
@@ -45609,11 +45622,11 @@ function requireLib$1() {
|
|
45609
45622
|
}
|
45610
45623
|
class StatementParser extends ExpressionParser {
|
45611
45624
|
parseTopLevel(file, program) {
|
45612
|
-
return file.program = this.parseProgram(program), file.comments = this.comments, this.optionFlags &
|
45625
|
+
return file.program = this.parseProgram(program), file.comments = this.comments, this.optionFlags & 256 && (file.tokens = babel7CompatTokens(this.tokens, this.input, this.startIndex)), this.finishNode(file, "File");
|
45613
45626
|
}
|
45614
45627
|
parseProgram(program, end = 140, sourceType = this.options.sourceType) {
|
45615
45628
|
if (program.sourceType = sourceType, program.interpreter = this.parseInterpreterDirective(), this.parseBlockBody(program, !0, !0, end), this.inModule) {
|
45616
|
-
if (!(this.optionFlags &
|
45629
|
+
if (!(this.optionFlags & 64) && this.scope.undefinedExports.size > 0)
|
45617
45630
|
for (const [localName, at] of Array.from(this.scope.undefinedExports))
|
45618
45631
|
this.raise(Errors.ModuleExportUndefined, at, {
|
45619
45632
|
localName
|
@@ -46518,7 +46531,7 @@ function requireLib$1() {
|
|
46518
46531
|
if (this.match(76)) {
|
46519
46532
|
if (this.hasPrecedingLineBreak() && this.lookaheadCharCode() === 40)
|
46520
46533
|
return;
|
46521
|
-
this.next(), this.hasPlugin("moduleAttributes") ? attributes = this.parseModuleAttributes() : attributes = this.parseImportAttributes(), useWith = !0;
|
46534
|
+
this.next(), this.hasPlugin("moduleAttributes") ? (attributes = this.parseModuleAttributes(), this.addExtra(node, "deprecatedWithLegacySyntax", !0)) : attributes = this.parseImportAttributes(), useWith = !0;
|
46522
46535
|
} else this.isContextual(94) && !this.hasPrecedingLineBreak() ? (!this.hasPlugin("deprecatedImportAssert") && !this.hasPlugin("importAssertions") && this.raise(Errors.ImportAttributesUseAssert, this.state.startLoc), this.hasPlugin("importAssertions") || this.addExtra(node, "deprecatedAssertSyntax", !0), this.next(), attributes = this.parseImportAttributes()) : attributes = [];
|
46523
46536
|
!useWith && this.hasPlugin("importAssertions") ? node.assertions = attributes : node.attributes = attributes;
|
46524
46537
|
}
|
@@ -46576,7 +46589,7 @@ function requireLib$1() {
|
|
46576
46589
|
constructor(options2, input2, pluginsMap) {
|
46577
46590
|
options2 = getOptions(options2), super(options2, input2), this.options = options2, this.initializeScopes(), this.plugins = pluginsMap, this.filename = options2.sourceFilename, this.startIndex = options2.startIndex;
|
46578
46591
|
let optionFlags = 0;
|
46579
|
-
options2.allowAwaitOutsideFunction && (optionFlags |= 1), options2.allowReturnOutsideFunction && (optionFlags |= 2), options2.allowImportExportEverywhere && (optionFlags |= 8), options2.allowSuperOutsideMethod && (optionFlags |= 16), options2.allowUndeclaredExports && (optionFlags |=
|
46592
|
+
options2.allowAwaitOutsideFunction && (optionFlags |= 1), options2.allowReturnOutsideFunction && (optionFlags |= 2), options2.allowImportExportEverywhere && (optionFlags |= 8), options2.allowSuperOutsideMethod && (optionFlags |= 16), options2.allowUndeclaredExports && (optionFlags |= 64), options2.allowNewTargetOutsideFunction && (optionFlags |= 4), options2.allowYieldOutsideFunction && (optionFlags |= 32), options2.ranges && (optionFlags |= 128), options2.tokens && (optionFlags |= 256), options2.createImportExpressions && (optionFlags |= 512), options2.createParenthesizedExpressions && (optionFlags |= 1024), options2.errorRecovery && (optionFlags |= 2048), options2.attachComment && (optionFlags |= 4096), options2.annexB && (optionFlags |= 8192), this.optionFlags = optionFlags;
|
46580
46593
|
}
|
46581
46594
|
getScopeHandler() {
|
46582
46595
|
return ScopeHandler;
|