{"version":3,"file":"index.cjs","names":["levels: LogLevel[]","process","name","matches","bodyNode","node","parse","arrowExpression","result","left","type","expr","startLoc","init","isPrivate","next","defaultExports: ExportDefaultDeclaration[]","imports: Array<{\n    path: unknown\n    node: CallExpression\n    isStatic: boolean\n  }>","result: Record<string, unknown>","name","path","name","process","path","fs","appJson: MiniProgramAppJson","normalizePath","stack: Array<{ parentActive: boolean, matched: boolean, active: boolean }>","name","Buffer","Buffer","base64url","base64url","path","alias: Alias[]","path","vitePathResolver: ((source: string, relative?: boolean) => string) | null","process","path","fs","process","obj: Record<string, unknown> | undefined","res: any","path","oObj: Record<string, unknown>","fs","process","platform","MagicString","path","fs","subPkgsInfo: ISubPkgsInfo[]","moduleIdProcessor","_moduleIdProcessor","name","mergedManualChunks: ManualChunksOption","result: string[]","getRelated","mainFlag: false | string","parse","process","SubPackagesOptimization","AsyncImportProcessor","AsyncComponentProcessor"],"sources":["../package.json","../src/common/Logger.ts","../src/common/ParseOptions.ts","../src/constants.ts","../node_modules/.pnpm/@babel+parser@7.28.5/node_modules/@babel/parser/lib/index.js","../node_modules/.pnpm/ast-kit@2.2.0/node_modules/ast-kit/dist/index.js","../src/utils/ast/common.ts","../src/utils/ast/constant.ts","../src/utils/ast/component-placeholder.ts","../src/utils/ast/macro.ts","../src/utils/uniapp/common.ts","../src/utils/uniapp/config.ts","../src/utils/base64url/pad-string.ts","../src/utils/base64url/index.ts","../src/utils/uniapp/virtual.ts","../src/utils/vite/path-resolver.ts","../src/utils/vue/parseSFC.ts","../src/utils/index.ts","../src/plugin/async-component-processor.ts","../src/plugin/async-import-processor.ts","../src/plugin/subpackages-optimization.ts","../src/index.ts"],"sourcesContent":["","/* eslint-disable no-console */\nimport chalk from 'chalk'\n\nenum LogLevel {\n  DEBUG = 'DEBUG',\n  INFO = 'INFO',\n  WARN = 'WARN',\n  ERROR = 'ERROR',\n}\n\nexport class Logger {\n  private level: LogLevel\n  private context: string\n  /** TODO: 可以使用其他的 debug 日志库 */\n  private Debugger = null\n  /** 全局兜底：是否是隐式log */\n  private isImplicit: boolean\n  public onLog?: (context: string, level: `${LogLevel}`, message: string, timestamp: number) => void\n\n  constructor(level: LogLevel = LogLevel.INFO, context: string = 'Plugin', isImplicit = false) {\n    this.level = level\n    this.context = context\n    this.isImplicit = isImplicit\n  }\n\n  private log(level: LogLevel, message: string, isImplicit?: boolean) {\n    if (this.shouldLog(level)) {\n      const coloredMessage = this.getColoredMessage(level, message)\n      this.onLog?.(this.context, level, message, Date.now())\n      if (isImplicit ?? this.isImplicit) {\n        // TODO: 相关的隐式log，需要通过外部环境变量启用\n        // 此处暂时不显示\n      }\n      else {\n        const c = 69\n        const colorCode = `\\u001B[3${c < 8 ? c : `8;5;${c}`};1m`\n        console.log(`  ${chalk(`${colorCode}${this.context}`)} ${coloredMessage}`)\n      }\n    }\n  }\n\n  private shouldLog(level: LogLevel): boolean {\n    const levels: LogLevel[] = [LogLevel.DEBUG, LogLevel.INFO, LogLevel.WARN, LogLevel.ERROR]\n    return levels.indexOf(level) >= levels.indexOf(this.level)\n  }\n\n  private getColoredMessage(level: LogLevel, message: string): string {\n    switch (level) {\n      case LogLevel.DEBUG:\n        return chalk.blue(`[${level}] ${message}`)\n      case LogLevel.INFO:\n        return chalk.green(`[${level}] ${message}`)\n      case LogLevel.WARN:\n        return chalk.yellow(`[${level}] ${message}`)\n      case LogLevel.ERROR:\n        return chalk.red(`[${level}] ${message}`)\n      default:\n        return message\n    }\n  }\n\n  debug(message: string, isImplicit?: boolean) {\n    this.log(LogLevel.DEBUG, message, isImplicit)\n  }\n\n  info(message: string, isImplicit?: boolean) {\n    this.log(LogLevel.INFO, message, isImplicit)\n  }\n\n  warn(message: string, isImplicit?: boolean) {\n    this.log(LogLevel.WARN, message, isImplicit)\n  }\n\n  error(message: string, isImplicit?: boolean) {\n    this.log(LogLevel.ERROR, message, isImplicit)\n  }\n}\n\nexport const logger = new Logger(LogLevel.INFO, 'uni-ku:bundle-optimizer')\n","import type { Enable, IOptions, OptimizationOptions } from '../type'\n\nexport class ParseOptions {\n  options: IOptions\n\n  constructor(options: IOptions) {\n    this.options = options\n  }\n\n  get enable() {\n    const { enable: origin = true } = this.options\n\n    return typeof origin === 'boolean'\n      ? {\n          'optimization': origin,\n          'async-component': origin,\n          'async-import': origin,\n        }\n      : {\n          'optimization': origin.optimization ?? true,\n          'async-component': origin['async-component'] ?? true,\n          'async-import': origin['async-import'] ?? true,\n        }\n  }\n\n  get logger() {\n    const { logger: origin = false } = this.options\n    const _ = ['optimization', 'async-component', 'async-import']\n    const temp = typeof origin === 'boolean'\n      ? origin ? _ : false\n      : origin\n\n    return Object.fromEntries(_.map(item => [item, (temp || []).includes(item)])) as Record<Enable, boolean>\n  }\n\n  get optimization(): Required<OptimizationOptions> {\n    const { optimization: origin = {} } = this.options\n\n    return {\n      normalizeVueEntityModule: origin.normalizeVueEntityModule ?? true,\n    }\n  }\n}\n","import process from 'node:process'\nimport { diffStrings } from './utils'\n\n/**\n * `js`|`jsx`|`ts`|`uts`|`tsx`|`mjs`|`json`\n * @description json 文件会被处理成 js 模块\n */\nexport const EXTNAME_JS_RE = /\\.(js|jsx|ts|uts|tsx|mjs|json)$/\nexport const JS_TYPES_RE = /\\.(?:j|t)sx?$|\\.mjs$/\n\nexport const knownJsSrcRE\n  = /\\.(?:[jt]sx?|m[jt]s|vue|marko|svelte|astro|imba|mdx)(?:$|\\?)/\n\nexport const CSS_LANGS_RE\n  = /\\.(css|less|sass|scss|styl|stylus|pcss|postcss|sss)(?:$|\\?)/\n\n/** `assets` 或者 `./assets` 开头的文件夹 */\nexport const ASSETS_DIR_RE = /^(\\.?\\/)?assets\\//\n\n/** `src` 或者 `./src` 开头的文件夹 */\nexport const SRC_DIR_RE = /^(\\.?\\/)?src\\//\n\n/** 文件后缀 */\nexport const EXT_RE = /\\.\\w+$/\n\nexport function isCSSRequest(request: string): boolean {\n  return CSS_LANGS_RE.test(request)\n}\n\n/**\n * 项目根路径\n *\n * // TODO: 后续自实现项目根路径的查找\n */\nexport const ROOT_DIR = process.env.VITE_ROOT_DIR!\nif (!ROOT_DIR) {\n  throw new Error('`ROOT_DIR` is not defined')\n}\n\n/**\n * Uniapp 业务源码入口\n */\nexport const UNI_INPUT_DIR = process.env.UNI_INPUT_DIR!\nif (!UNI_INPUT_DIR) {\n  throw new Error('`UNI_INPUT_DIR` is not defined')\n}\n\n// UNI_INPUT_DIR 必须包含于 ROOT_DIR\nif (!(`${UNI_INPUT_DIR}/`).startsWith(ROOT_DIR)) {\n  throw new Error('`UNI_INPUT_DIR` need startsWith `ROOT_DIR`')\n}\n\n/**\n * Uniapp 输出目录\n */\nexport const UNI_OUTPUT_DIR = process.env.UNI_OUTPUT_DIR!\nif (!UNI_OUTPUT_DIR) {\n  throw new Error('`UNI_OUTPUT_DIR` is not defined')\n}\n\nconst pathDiff = diffStrings(ROOT_DIR, UNI_INPUT_DIR)\n/**\n * uniapp 业务源码路径与项目根路径的差异\n */\nexport const UNI_SRC_DIFF_PATH = !pathDiff.diffA && !pathDiff.suffix && pathDiff.prefix === ROOT_DIR ? pathDiff.diffB : ''\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n  value: true\n});\nfunction _objectWithoutPropertiesLoose(r, e) {\n  if (null == r) return {};\n  var t = {};\n  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {\n    if (-1 !== e.indexOf(n)) continue;\n    t[n] = r[n];\n  }\n  return t;\n}\nclass Position {\n  constructor(line, col, index) {\n    this.line = void 0;\n    this.column = void 0;\n    this.index = void 0;\n    this.line = line;\n    this.column = col;\n    this.index = index;\n  }\n}\nclass SourceLocation {\n  constructor(start, end) {\n    this.start = void 0;\n    this.end = void 0;\n    this.filename = void 0;\n    this.identifierName = void 0;\n    this.start = start;\n    this.end = end;\n  }\n}\nfunction createPositionWithColumnOffset(position, columnOffset) {\n  const {\n    line,\n    column,\n    index\n  } = position;\n  return new Position(line, column + columnOffset, index + columnOffset);\n}\nconst code = \"BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED\";\nvar ModuleErrors = {\n  ImportMetaOutsideModule: {\n    message: `import.meta may appear only with 'sourceType: \"module\"'`,\n    code\n  },\n  ImportOutsideModule: {\n    message: `'import' and 'export' may appear only with 'sourceType: \"module\"'`,\n    code\n  }\n};\nconst NodeDescriptions = {\n  ArrayPattern: \"array destructuring pattern\",\n  AssignmentExpression: \"assignment expression\",\n  AssignmentPattern: \"assignment expression\",\n  ArrowFunctionExpression: \"arrow function expression\",\n  ConditionalExpression: \"conditional expression\",\n  CatchClause: \"catch clause\",\n  ForOfStatement: \"for-of statement\",\n  ForInStatement: \"for-in statement\",\n  ForStatement: \"for-loop\",\n  FormalParameters: \"function parameter list\",\n  Identifier: \"identifier\",\n  ImportSpecifier: \"import specifier\",\n  ImportDefaultSpecifier: \"import default specifier\",\n  ImportNamespaceSpecifier: \"import namespace specifier\",\n  ObjectPattern: \"object destructuring pattern\",\n  ParenthesizedExpression: \"parenthesized expression\",\n  RestElement: \"rest element\",\n  UpdateExpression: {\n    true: \"prefix operation\",\n    false: \"postfix operation\"\n  },\n  VariableDeclarator: \"variable declaration\",\n  YieldExpression: \"yield expression\"\n};\nconst toNodeDescription = node => node.type === \"UpdateExpression\" ? NodeDescriptions.UpdateExpression[`${node.prefix}`] : NodeDescriptions[node.type];\nvar StandardErrors = {\n  AccessorIsGenerator: ({\n    kind\n  }) => `A ${kind}ter cannot be a generator.`,\n  ArgumentsInClass: \"'arguments' is only allowed in functions and class methods.\",\n  AsyncFunctionInSingleStatementContext: \"Async functions can only be declared at the top level or inside a block.\",\n  AwaitBindingIdentifier: \"Can not use 'await' as identifier inside an async function.\",\n  AwaitBindingIdentifierInStaticBlock: \"Can not use 'await' as identifier inside a static block.\",\n  AwaitExpressionFormalParameter: \"'await' is not allowed in async function parameters.\",\n  AwaitUsingNotInAsyncContext: \"'await using' is only allowed within async functions and at the top levels of modules.\",\n  AwaitNotInAsyncContext: \"'await' is only allowed within async functions and at the top levels of modules.\",\n  BadGetterArity: \"A 'get' accessor must not have any formal parameters.\",\n  BadSetterArity: \"A 'set' accessor must have exactly one formal parameter.\",\n  BadSetterRestParameter: \"A 'set' accessor function argument must not be a rest parameter.\",\n  ConstructorClassField: \"Classes may not have a field named 'constructor'.\",\n  ConstructorClassPrivateField: \"Classes may not have a private field named '#constructor'.\",\n  ConstructorIsAccessor: \"Class constructor may not be an accessor.\",\n  ConstructorIsAsync: \"Constructor can't be an async function.\",\n  ConstructorIsGenerator: \"Constructor can't be a generator.\",\n  DeclarationMissingInitializer: ({\n    kind\n  }) => `Missing initializer in ${kind} declaration.`,\n  DecoratorArgumentsOutsideParentheses: \"Decorator arguments must be moved inside parentheses: use '@(decorator(args))' instead of '@(decorator)(args)'.\",\n  DecoratorBeforeExport: \"Decorators must be placed *before* the 'export' keyword. Remove the 'decoratorsBeforeExport: true' option to use the 'export @decorator class {}' syntax.\",\n  DecoratorsBeforeAfterExport: \"Decorators can be placed *either* before or after the 'export' keyword, but not in both locations at the same time.\",\n  DecoratorConstructor: \"Decorators can't be used with a constructor. Did you mean '@dec class { ... }'?\",\n  DecoratorExportClass: \"Decorators must be placed *after* the 'export' keyword. Remove the 'decoratorsBeforeExport: false' option to use the '@decorator export class {}' syntax.\",\n  DecoratorSemicolon: \"Decorators must not be followed by a semicolon.\",\n  DecoratorStaticBlock: \"Decorators can't be used with a static block.\",\n  DeferImportRequiresNamespace: 'Only `import defer * as x from \"./module\"` is valid.',\n  DeletePrivateField: \"Deleting a private field is not allowed.\",\n  DestructureNamedImport: \"ES2015 named imports do not destructure. Use another statement for destructuring after the import.\",\n  DuplicateConstructor: \"Duplicate constructor in the same class.\",\n  DuplicateDefaultExport: \"Only one default export allowed per module.\",\n  DuplicateExport: ({\n    exportName\n  }) => `\\`${exportName}\\` has already been exported. Exported identifiers must be unique.`,\n  DuplicateProto: \"Redefinition of __proto__ property.\",\n  DuplicateRegExpFlags: \"Duplicate regular expression flag.\",\n  ElementAfterRest: \"Rest element must be last element.\",\n  EscapedCharNotAnIdentifier: \"Invalid Unicode escape.\",\n  ExportBindingIsString: ({\n    localName,\n    exportName\n  }) => `A string literal cannot be used as an exported binding without \\`from\\`.\\n- Did you mean \\`export { '${localName}' as '${exportName}' } from 'some-module'\\`?`,\n  ExportDefaultFromAsIdentifier: \"'from' is not allowed as an identifier after 'export default'.\",\n  ForInOfLoopInitializer: ({\n    type\n  }) => `'${type === \"ForInStatement\" ? \"for-in\" : \"for-of\"}' loop variable declaration may not have an initializer.`,\n  ForInUsing: \"For-in loop may not start with 'using' declaration.\",\n  ForOfAsync: \"The left-hand side of a for-of loop may not be 'async'.\",\n  ForOfLet: \"The left-hand side of a for-of loop may not start with 'let'.\",\n  GeneratorInSingleStatementContext: \"Generators can only be declared at the top level or inside a block.\",\n  IllegalBreakContinue: ({\n    type\n  }) => `Unsyntactic ${type === \"BreakStatement\" ? \"break\" : \"continue\"}.`,\n  IllegalLanguageModeDirective: \"Illegal 'use strict' directive in function with non-simple parameter list.\",\n  IllegalReturn: \"'return' outside of function.\",\n  ImportAttributesUseAssert: \"The `assert` keyword in import attributes is deprecated and it has been replaced by the `with` keyword. You can enable the `deprecatedImportAssert` parser plugin to suppress this error.\",\n  ImportBindingIsString: ({\n    importName\n  }) => `A string literal cannot be used as an imported binding.\\n- Did you mean \\`import { \"${importName}\" as foo }\\`?`,\n  ImportCallArity: `\\`import()\\` requires exactly one or two arguments.`,\n  ImportCallNotNewExpression: \"Cannot use new with import(...).\",\n  ImportCallSpreadArgument: \"`...` is not allowed in `import()`.\",\n  ImportJSONBindingNotDefault: \"A JSON module can only be imported with `default`.\",\n  ImportReflectionHasAssertion: \"`import module x` cannot have assertions.\",\n  ImportReflectionNotBinding: 'Only `import module x from \"./module\"` is valid.',\n  IncompatibleRegExpUVFlags: \"The 'u' and 'v' regular expression flags cannot be enabled at the same time.\",\n  InvalidBigIntLiteral: \"Invalid BigIntLiteral.\",\n  InvalidCodePoint: \"Code point out of bounds.\",\n  InvalidCoverDiscardElement: \"'void' must be followed by an expression when not used in a binding position.\",\n  InvalidCoverInitializedName: \"Invalid shorthand property initializer.\",\n  InvalidDecimal: \"Invalid decimal.\",\n  InvalidDigit: ({\n    radix\n  }) => `Expected number in radix ${radix}.`,\n  InvalidEscapeSequence: \"Bad character escape sequence.\",\n  InvalidEscapeSequenceTemplate: \"Invalid escape sequence in template.\",\n  InvalidEscapedReservedWord: ({\n    reservedWord\n  }) => `Escape sequence in keyword ${reservedWord}.`,\n  InvalidIdentifier: ({\n    identifierName\n  }) => `Invalid identifier ${identifierName}.`,\n  InvalidLhs: ({\n    ancestor\n  }) => `Invalid left-hand side in ${toNodeDescription(ancestor)}.`,\n  InvalidLhsBinding: ({\n    ancestor\n  }) => `Binding invalid left-hand side in ${toNodeDescription(ancestor)}.`,\n  InvalidLhsOptionalChaining: ({\n    ancestor\n  }) => `Invalid optional chaining in the left-hand side of ${toNodeDescription(ancestor)}.`,\n  InvalidNumber: \"Invalid number.\",\n  InvalidOrMissingExponent: \"Floating-point numbers require a valid exponent after the 'e'.\",\n  InvalidOrUnexpectedToken: ({\n    unexpected\n  }) => `Unexpected character '${unexpected}'.`,\n  InvalidParenthesizedAssignment: \"Invalid parenthesized assignment pattern.\",\n  InvalidPrivateFieldResolution: ({\n    identifierName\n  }) => `Private name #${identifierName} is not defined.`,\n  InvalidPropertyBindingPattern: \"Binding member expression.\",\n  InvalidRecordProperty: \"Only properties and spread elements are allowed in record definitions.\",\n  InvalidRestAssignmentPattern: \"Invalid rest operator's argument.\",\n  LabelRedeclaration: ({\n    labelName\n  }) => `Label '${labelName}' is already declared.`,\n  LetInLexicalBinding: \"'let' is disallowed as a lexically bound name.\",\n  LineTerminatorBeforeArrow: \"No line break is allowed before '=>'.\",\n  MalformedRegExpFlags: \"Invalid regular expression flag.\",\n  MissingClassName: \"A class name is required.\",\n  MissingEqInAssignment: \"Only '=' operator can be used for specifying default value.\",\n  MissingSemicolon: \"Missing semicolon.\",\n  MissingPlugin: ({\n    missingPlugin\n  }) => `This experimental syntax requires enabling the parser plugin: ${missingPlugin.map(name => JSON.stringify(name)).join(\", \")}.`,\n  MissingOneOfPlugins: ({\n    missingPlugin\n  }) => `This experimental syntax requires enabling one of the following parser plugin(s): ${missingPlugin.map(name => JSON.stringify(name)).join(\", \")}.`,\n  MissingUnicodeEscape: \"Expecting Unicode escape sequence \\\\uXXXX.\",\n  MixingCoalesceWithLogical: \"Nullish coalescing operator(??) requires parens when mixing with logical operators.\",\n  ModuleAttributeDifferentFromType: \"The only accepted module attribute is `type`.\",\n  ModuleAttributeInvalidValue: \"Only string literals are allowed as module attribute values.\",\n  ModuleAttributesWithDuplicateKeys: ({\n    key\n  }) => `Duplicate key \"${key}\" is not allowed in module attributes.`,\n  ModuleExportNameHasLoneSurrogate: ({\n    surrogateCharCode\n  }) => `An export name cannot include a lone surrogate, found '\\\\u${surrogateCharCode.toString(16)}'.`,\n  ModuleExportUndefined: ({\n    localName\n  }) => `Export '${localName}' is not defined.`,\n  MultipleDefaultsInSwitch: \"Multiple default clauses.\",\n  NewlineAfterThrow: \"Illegal newline after throw.\",\n  NoCatchOrFinally: \"Missing catch or finally clause.\",\n  NumberIdentifier: \"Identifier directly after number.\",\n  NumericSeparatorInEscapeSequence: \"Numeric separators are not allowed inside unicode escape sequences or hex escape sequences.\",\n  ObsoleteAwaitStar: \"'await*' has been removed from the async functions proposal. Use Promise.all() instead.\",\n  OptionalChainingNoNew: \"Constructors in/after an Optional Chain are not allowed.\",\n  OptionalChainingNoTemplate: \"Tagged Template Literals are not allowed in optionalChain.\",\n  OverrideOnConstructor: \"'override' modifier cannot appear on a constructor declaration.\",\n  ParamDupe: \"Argument name clash.\",\n  PatternHasAccessor: \"Object pattern can't contain getter or setter.\",\n  PatternHasMethod: \"Object pattern can't contain methods.\",\n  PrivateInExpectedIn: ({\n    identifierName\n  }) => `Private names are only allowed in property accesses (\\`obj.#${identifierName}\\`) or in \\`in\\` expressions (\\`#${identifierName} in obj\\`).`,\n  PrivateNameRedeclaration: ({\n    identifierName\n  }) => `Duplicate private name #${identifierName}.`,\n  RecordExpressionBarIncorrectEndSyntaxType: \"Record expressions ending with '|}' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.\",\n  RecordExpressionBarIncorrectStartSyntaxType: \"Record expressions starting with '{|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.\",\n  RecordExpressionHashIncorrectStartSyntaxType: \"Record expressions starting with '#{' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.\",\n  RecordNoProto: \"'__proto__' is not allowed in Record expressions.\",\n  RestTrailingComma: \"Unexpected trailing comma after rest element.\",\n  SloppyFunction: \"In non-strict mode code, functions can only be declared at top level or inside a block.\",\n  SloppyFunctionAnnexB: \"In non-strict mode code, functions can only be declared at top level, inside a block, or as the body of an if statement.\",\n  SourcePhaseImportRequiresDefault: 'Only `import source x from \"./module\"` is valid.',\n  StaticPrototype: \"Classes may not have static property named prototype.\",\n  SuperNotAllowed: \"`super()` is only valid inside a class constructor of a subclass. Maybe a typo in the method name ('constructor') or not extending another class?\",\n  SuperPrivateField: \"Private fields can't be accessed on super.\",\n  TrailingDecorator: \"Decorators must be attached to a class element.\",\n  TupleExpressionBarIncorrectEndSyntaxType: \"Tuple expressions ending with '|]' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.\",\n  TupleExpressionBarIncorrectStartSyntaxType: \"Tuple expressions starting with '[|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.\",\n  TupleExpressionHashIncorrectStartSyntaxType: \"Tuple expressions starting with '#[' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.\",\n  UnexpectedArgumentPlaceholder: \"Unexpected argument placeholder.\",\n  UnexpectedAwaitAfterPipelineBody: 'Unexpected \"await\" after pipeline body; await must have parentheses in minimal proposal.',\n  UnexpectedDigitAfterHash: \"Unexpected digit after hash token.\",\n  UnexpectedImportExport: \"'import' and 'export' may only appear at the top level.\",\n  UnexpectedKeyword: ({\n    keyword\n  }) => `Unexpected keyword '${keyword}'.`,\n  UnexpectedLeadingDecorator: \"Leading decorators must be attached to a class declaration.\",\n  UnexpectedLexicalDeclaration: \"Lexical declaration cannot appear in a single-statement context.\",\n  UnexpectedNewTarget: \"`new.target` can only be used in functions or class properties.\",\n  UnexpectedNumericSeparator: \"A numeric separator is only allowed between two digits.\",\n  UnexpectedPrivateField: \"Unexpected private name.\",\n  UnexpectedReservedWord: ({\n    reservedWord\n  }) => `Unexpected reserved word '${reservedWord}'.`,\n  UnexpectedSuper: \"'super' is only allowed in object methods and classes.\",\n  UnexpectedToken: ({\n    expected,\n    unexpected\n  }) => `Unexpected token${unexpected ? ` '${unexpected}'.` : \"\"}${expected ? `, expected \"${expected}\"` : \"\"}`,\n  UnexpectedTokenUnaryExponentiation: \"Illegal expression. Wrap left hand side or entire exponentiation in parentheses.\",\n  UnexpectedUsingDeclaration: \"Using declaration cannot appear in the top level when source type is `script` or in the bare case statement.\",\n  UnexpectedVoidPattern: \"Unexpected void binding.\",\n  UnsupportedBind: \"Binding should be performed on object property.\",\n  UnsupportedDecoratorExport: \"A decorated export must export a class declaration.\",\n  UnsupportedDefaultExport: \"Only expressions, functions or classes are allowed as the `default` export.\",\n  UnsupportedImport: \"`import` can only be used in `import()` or `import.meta`.\",\n  UnsupportedMetaProperty: ({\n    target,\n    onlyValidPropertyName\n  }) => `The only valid meta property for ${target} is ${target}.${onlyValidPropertyName}.`,\n  UnsupportedParameterDecorator: \"Decorators cannot be used to decorate parameters.\",\n  UnsupportedPropertyDecorator: \"Decorators cannot be used to decorate object literal properties.\",\n  UnsupportedSuper: \"'super' can only be used with function calls (i.e. super()) or in property accesses (i.e. super.prop or super[prop]).\",\n  UnterminatedComment: \"Unterminated comment.\",\n  UnterminatedRegExp: \"Unterminated regular expression.\",\n  UnterminatedString: \"Unterminated string constant.\",\n  UnterminatedTemplate: \"Unterminated template.\",\n  UsingDeclarationExport: \"Using declaration cannot be exported.\",\n  UsingDeclarationHasBindingPattern: \"Using declaration cannot have destructuring patterns.\",\n  VarRedeclaration: ({\n    identifierName\n  }) => `Identifier '${identifierName}' has already been declared.`,\n  VoidPatternCatchClauseParam: \"A void binding can not be the catch clause parameter. Use `try { ... } catch { ... }` if you want to discard the caught error.\",\n  VoidPatternInitializer: \"A void binding may not have an initializer.\",\n  YieldBindingIdentifier: \"Can not use 'yield' as identifier inside a generator.\",\n  YieldInParameter: \"Yield expression is not allowed in formal parameters.\",\n  YieldNotInGeneratorFunction: \"'yield' is only allowed within generator functions.\",\n  ZeroDigitNumericSeparator: \"Numeric separator can not be used after leading 0.\"\n};\nvar StrictModeErrors = {\n  StrictDelete: \"Deleting local variable in strict mode.\",\n  StrictEvalArguments: ({\n    referenceName\n  }) => `Assigning to '${referenceName}' in strict mode.`,\n  StrictEvalArgumentsBinding: ({\n    bindingName\n  }) => `Binding '${bindingName}' in strict mode.`,\n  StrictFunction: \"In strict mode code, functions can only be declared at top level or inside a block.\",\n  StrictNumericEscape: \"The only valid numeric escape in strict mode is '\\\\0'.\",\n  StrictOctalLiteral: \"Legacy octal literals are not allowed in strict mode.\",\n  StrictWith: \"'with' in strict mode.\"\n};\nvar ParseExpressionErrors = {\n  ParseExpressionEmptyInput: \"Unexpected parseExpression() input: The input is empty or contains only comments.\",\n  ParseExpressionExpectsEOF: ({\n    unexpected\n  }) => `Unexpected parseExpression() input: The input should contain exactly one expression, but the first expression is followed by the unexpected character \\`${String.fromCodePoint(unexpected)}\\`.`\n};\nconst UnparenthesizedPipeBodyDescriptions = new Set([\"ArrowFunctionExpression\", \"AssignmentExpression\", \"ConditionalExpression\", \"YieldExpression\"]);\nvar PipelineOperatorErrors = Object.assign({\n  PipeBodyIsTighter: \"Unexpected yield after pipeline body; any yield expression acting as Hack-style pipe body must be parenthesized due to its loose operator precedence.\",\n  PipeTopicRequiresHackPipes: 'Topic reference is used, but the pipelineOperator plugin was not passed a \"proposal\": \"hack\" or \"smart\" option.',\n  PipeTopicUnbound: \"Topic reference is unbound; it must be inside a pipe body.\",\n  PipeTopicUnconfiguredToken: ({\n    token\n  }) => `Invalid topic token ${token}. In order to use ${token} as a topic reference, the pipelineOperator plugin must be configured with { \"proposal\": \"hack\", \"topicToken\": \"${token}\" }.`,\n  PipeTopicUnused: \"Hack-style pipe body does not contain a topic reference; Hack-style pipes must use topic at least once.\",\n  PipeUnparenthesizedBody: ({\n    type\n  }) => `Hack-style pipe body cannot be an unparenthesized ${toNodeDescription({\n    type\n  })}; please wrap it in parentheses.`\n}, {\n  PipelineBodyNoArrow: 'Unexpected arrow \"=>\" after pipeline body; arrow function in pipeline body must be parenthesized.',\n  PipelineBodySequenceExpression: \"Pipeline body may not be a comma-separated sequence expression.\",\n  PipelineHeadSequenceExpression: \"Pipeline head should not be a comma-separated sequence expression.\",\n  PipelineTopicUnused: \"Pipeline is in topic style but does not use topic reference.\",\n  PrimaryTopicNotAllowed: \"Topic reference was used in a lexical context without topic binding.\",\n  PrimaryTopicRequiresSmartPipeline: 'Topic reference is used, but the pipelineOperator plugin was not passed a \"proposal\": \"hack\" or \"smart\" option.'\n});\nconst _excluded = [\"message\"];\nfunction defineHidden(obj, key, value) {\n  Object.defineProperty(obj, key, {\n    enumerable: false,\n    configurable: true,\n    value\n  });\n}\nfunction toParseErrorConstructor({\n  toMessage,\n  code,\n  reasonCode,\n  syntaxPlugin\n}) {\n  const hasMissingPlugin = reasonCode === \"MissingPlugin\" || reasonCode === \"MissingOneOfPlugins\";\n  {\n    const oldReasonCodes = {\n      AccessorCannotDeclareThisParameter: \"AccesorCannotDeclareThisParameter\",\n      AccessorCannotHaveTypeParameters: \"AccesorCannotHaveTypeParameters\",\n      ConstInitializerMustBeStringOrNumericLiteralOrLiteralEnumReference: \"ConstInitiailizerMustBeStringOrNumericLiteralOrLiteralEnumReference\",\n      SetAccessorCannotHaveOptionalParameter: \"SetAccesorCannotHaveOptionalParameter\",\n      SetAccessorCannotHaveRestParameter: \"SetAccesorCannotHaveRestParameter\",\n      SetAccessorCannotHaveReturnType: \"SetAccesorCannotHaveReturnType\"\n    };\n    if (oldReasonCodes[reasonCode]) {\n      reasonCode = oldReasonCodes[reasonCode];\n    }\n  }\n  return function constructor(loc, details) {\n    const error = new SyntaxError();\n    error.code = code;\n    error.reasonCode = reasonCode;\n    error.loc = loc;\n    error.pos = loc.index;\n    error.syntaxPlugin = syntaxPlugin;\n    if (hasMissingPlugin) {\n      error.missingPlugin = details.missingPlugin;\n    }\n    defineHidden(error, \"clone\", function clone(overrides = {}) {\n      var _overrides$loc;\n      const {\n        line,\n        column,\n        index\n      } = (_overrides$loc = overrides.loc) != null ? _overrides$loc : loc;\n      return constructor(new Position(line, column, index), Object.assign({}, details, overrides.details));\n    });\n    defineHidden(error, \"details\", details);\n    Object.defineProperty(error, \"message\", {\n      configurable: true,\n      get() {\n        const message = `${toMessage(details)} (${loc.line}:${loc.column})`;\n        this.message = message;\n        return message;\n      },\n      set(value) {\n        Object.defineProperty(this, \"message\", {\n          value,\n          writable: true\n        });\n      }\n    });\n    return error;\n  };\n}\nfunction ParseErrorEnum(argument, syntaxPlugin) {\n  if (Array.isArray(argument)) {\n    return parseErrorTemplates => ParseErrorEnum(parseErrorTemplates, argument[0]);\n  }\n  const ParseErrorConstructors = {};\n  for (const reasonCode of Object.keys(argument)) {\n    const template = argument[reasonCode];\n    const _ref = typeof template === \"string\" ? {\n        message: () => template\n      } : typeof template === \"function\" ? {\n        message: template\n      } : template,\n      {\n        message\n      } = _ref,\n      rest = _objectWithoutPropertiesLoose(_ref, _excluded);\n    const toMessage = typeof message === \"string\" ? () => message : message;\n    ParseErrorConstructors[reasonCode] = toParseErrorConstructor(Object.assign({\n      code: \"BABEL_PARSER_SYNTAX_ERROR\",\n      reasonCode,\n      toMessage\n    }, syntaxPlugin ? {\n      syntaxPlugin\n    } : {}, rest));\n  }\n  return ParseErrorConstructors;\n}\nconst Errors = Object.assign({}, ParseErrorEnum(ModuleErrors), ParseErrorEnum(StandardErrors), ParseErrorEnum(StrictModeErrors), ParseErrorEnum(ParseExpressionErrors), ParseErrorEnum`pipelineOperator`(PipelineOperatorErrors));\nfunction createDefaultOptions() {\n  return {\n    sourceType: \"script\",\n    sourceFilename: undefined,\n    startIndex: 0,\n    startColumn: 0,\n    startLine: 1,\n    allowAwaitOutsideFunction: false,\n    allowReturnOutsideFunction: false,\n    allowNewTargetOutsideFunction: false,\n    allowImportExportEverywhere: false,\n    allowSuperOutsideMethod: false,\n    allowUndeclaredExports: false,\n    allowYieldOutsideFunction: false,\n    plugins: [],\n    strictMode: undefined,\n    ranges: false,\n    tokens: false,\n    createImportExpressions: false,\n    createParenthesizedExpressions: false,\n    errorRecovery: false,\n    attachComment: true,\n    annexB: true\n  };\n}\nfunction getOptions(opts) {\n  const options = createDefaultOptions();\n  if (opts == null) {\n    return options;\n  }\n  if (opts.annexB != null && opts.annexB !== false) {\n    throw new Error(\"The `annexB` option can only be set to `false`.\");\n  }\n  for (const key of Object.keys(options)) {\n    if (opts[key] != null) options[key] = opts[key];\n  }\n  if (options.startLine === 1) {\n    if (opts.startIndex == null && options.startColumn > 0) {\n      options.startIndex = options.startColumn;\n    } else if (opts.startColumn == null && options.startIndex > 0) {\n      options.startColumn = options.startIndex;\n    }\n  } else if (opts.startColumn == null || opts.startIndex == null) {\n    if (opts.startIndex != null) {\n      throw new Error(\"With a `startLine > 1` you must also specify `startIndex` and `startColumn`.\");\n    }\n  }\n  if (options.sourceType === \"commonjs\") {\n    if (opts.allowAwaitOutsideFunction != null) {\n      throw new Error(\"The `allowAwaitOutsideFunction` option cannot be used with `sourceType: 'commonjs'`.\");\n    }\n    if (opts.allowReturnOutsideFunction != null) {\n      throw new Error(\"`sourceType: 'commonjs'` implies `allowReturnOutsideFunction: true`, please remove the `allowReturnOutsideFunction` option or use `sourceType: 'script'`.\");\n    }\n    if (opts.allowNewTargetOutsideFunction != null) {\n      throw new Error(\"`sourceType: 'commonjs'` implies `allowNewTargetOutsideFunction: true`, please remove the `allowNewTargetOutsideFunction` option or use `sourceType: 'script'`.\");\n    }\n  }\n  return options;\n}\nconst {\n  defineProperty\n} = Object;\nconst toUnenumerable = (object, key) => {\n  if (object) {\n    defineProperty(object, key, {\n      enumerable: false,\n      value: object[key]\n    });\n  }\n};\nfunction toESTreeLocation(node) {\n  toUnenumerable(node.loc.start, \"index\");\n  toUnenumerable(node.loc.end, \"index\");\n  return node;\n}\nvar estree = superClass => class ESTreeParserMixin extends superClass {\n  parse() {\n    const file = toESTreeLocation(super.parse());\n    if (this.optionFlags & 256) {\n      file.tokens = file.tokens.map(toESTreeLocation);\n    }\n    return file;\n  }\n  parseRegExpLiteral({\n    pattern,\n    flags\n  }) {\n    let regex = null;\n    try {\n      regex = new RegExp(pattern, flags);\n    } catch (_) {}\n    const node = this.estreeParseLiteral(regex);\n    node.regex = {\n      pattern,\n      flags\n    };\n    return node;\n  }\n  parseBigIntLiteral(value) {\n    let bigInt;\n    try {\n      bigInt = BigInt(value);\n    } catch (_unused) {\n      bigInt = null;\n    }\n    const node = this.estreeParseLiteral(bigInt);\n    node.bigint = String(node.value || value);\n    return node;\n  }\n  parseDecimalLiteral(value) {\n    const decimal = null;\n    const node = this.estreeParseLiteral(decimal);\n    node.decimal = String(node.value || value);\n    return node;\n  }\n  estreeParseLiteral(value) {\n    return this.parseLiteral(value, \"Literal\");\n  }\n  parseStringLiteral(value) {\n    return this.estreeParseLiteral(value);\n  }\n  parseNumericLiteral(value) {\n    return this.estreeParseLiteral(value);\n  }\n  parseNullLiteral() {\n    return this.estreeParseLiteral(null);\n  }\n  parseBooleanLiteral(value) {\n    return this.estreeParseLiteral(value);\n  }\n  estreeParseChainExpression(node, endLoc) {\n    const chain = this.startNodeAtNode(node);\n    chain.expression = node;\n    return this.finishNodeAt(chain, \"ChainExpression\", endLoc);\n  }\n  directiveToStmt(directive) {\n    const expression = directive.value;\n    delete directive.value;\n    this.castNodeTo(expression, \"Literal\");\n    expression.raw = expression.extra.raw;\n    expression.value = expression.extra.expressionValue;\n    const stmt = this.castNodeTo(directive, \"ExpressionStatement\");\n    stmt.expression = expression;\n    stmt.directive = expression.extra.rawValue;\n    delete expression.extra;\n    return stmt;\n  }\n  fillOptionalPropertiesForTSESLint(node) {}\n  cloneEstreeStringLiteral(node) {\n    const {\n      start,\n      end,\n      loc,\n      range,\n      raw,\n      value\n    } = node;\n    const cloned = Object.create(node.constructor.prototype);\n    cloned.type = \"Literal\";\n    cloned.start = start;\n    cloned.end = end;\n    cloned.loc = loc;\n    cloned.range = range;\n    cloned.raw = raw;\n    cloned.value = value;\n    return cloned;\n  }\n  initFunction(node, isAsync) {\n    super.initFunction(node, isAsync);\n    node.expression = false;\n  }\n  checkDeclaration(node) {\n    if (node != null && this.isObjectProperty(node)) {\n      this.checkDeclaration(node.value);\n    } else {\n      super.checkDeclaration(node);\n    }\n  }\n  getObjectOrClassMethodParams(method) {\n    return method.value.params;\n  }\n  isValidDirective(stmt) {\n    var _stmt$expression$extr;\n    return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"Literal\" && typeof stmt.expression.value === \"string\" && !((_stmt$expression$extr = stmt.expression.extra) != null && _stmt$expression$extr.parenthesized);\n  }\n  parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse) {\n    super.parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse);\n    const directiveStatements = node.directives.map(d => this.directiveToStmt(d));\n    node.body = directiveStatements.concat(node.body);\n    delete node.directives;\n  }\n  parsePrivateName() {\n    const node = super.parsePrivateName();\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return node;\n      }\n    }\n    return this.convertPrivateNameToPrivateIdentifier(node);\n  }\n  convertPrivateNameToPrivateIdentifier(node) {\n    const name = super.getPrivateNameSV(node);\n    delete node.id;\n    node.name = name;\n    return this.castNodeTo(node, \"PrivateIdentifier\");\n  }\n  isPrivateName(node) {\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return super.isPrivateName(node);\n      }\n    }\n    return node.type === \"PrivateIdentifier\";\n  }\n  getPrivateNameSV(node) {\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return super.getPrivateNameSV(node);\n      }\n    }\n    return node.name;\n  }\n  parseLiteral(value, type) {\n    const node = super.parseLiteral(value, type);\n    node.raw = node.extra.raw;\n    delete node.extra;\n    return node;\n  }\n  parseFunctionBody(node, allowExpression, isMethod = false) {\n    super.parseFunctionBody(node, allowExpression, isMethod);\n    node.expression = node.body.type !== \"BlockStatement\";\n  }\n  parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope = false) {\n    let funcNode = this.startNode();\n    funcNode.kind = node.kind;\n    funcNode = super.parseMethod(funcNode, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope);\n    delete funcNode.kind;\n    const {\n      typeParameters\n    } = node;\n    if (typeParameters) {\n      delete node.typeParameters;\n      funcNode.typeParameters = typeParameters;\n      this.resetStartLocationFromNode(funcNode, typeParameters);\n    }\n    const valueNode = this.castNodeTo(funcNode, \"FunctionExpression\");\n    node.value = valueNode;\n    if (type === \"ClassPrivateMethod\") {\n      node.computed = false;\n    }\n    if (type === \"ObjectMethod\") {\n      if (node.kind === \"method\") {\n        node.kind = \"init\";\n      }\n      node.shorthand = false;\n      return this.finishNode(node, \"Property\");\n    } else {\n      return this.finishNode(node, \"MethodDefinition\");\n    }\n  }\n  nameIsConstructor(key) {\n    if (key.type === \"Literal\") return key.value === \"constructor\";\n    return super.nameIsConstructor(key);\n  }\n  parseClassProperty(...args) {\n    const propertyNode = super.parseClassProperty(...args);\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return propertyNode;\n      }\n    }\n    {\n      this.castNodeTo(propertyNode, \"PropertyDefinition\");\n    }\n    return propertyNode;\n  }\n  parseClassPrivateProperty(...args) {\n    const propertyNode = super.parseClassPrivateProperty(...args);\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return propertyNode;\n      }\n    }\n    {\n      this.castNodeTo(propertyNode, \"PropertyDefinition\");\n    }\n    propertyNode.computed = false;\n    return propertyNode;\n  }\n  parseClassAccessorProperty(node) {\n    const accessorPropertyNode = super.parseClassAccessorProperty(node);\n    {\n      if (!this.getPluginOption(\"estree\", \"classFeatures\")) {\n        return accessorPropertyNode;\n      }\n    }\n    if (accessorPropertyNode.abstract && this.hasPlugin(\"typescript\")) {\n      delete accessorPropertyNode.abstract;\n      this.castNodeTo(accessorPropertyNode, \"TSAbstractAccessorProperty\");\n    } else {\n      this.castNodeTo(accessorPropertyNode, \"AccessorProperty\");\n    }\n    return accessorPropertyNode;\n  }\n  parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors) {\n    const node = super.parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors);\n    if (node) {\n      node.kind = \"init\";\n      this.castNodeTo(node, \"Property\");\n    }\n    return node;\n  }\n  finishObjectProperty(node) {\n    node.kind = \"init\";\n    return this.finishNode(node, \"Property\");\n  }\n  isValidLVal(type, disallowCallExpression, isUnparenthesizedInAssign, binding) {\n    return type === \"Property\" ? \"value\" : super.isValidLVal(type, disallowCallExpression, isUnparenthesizedInAssign, binding);\n  }\n  isAssignable(node, isBinding) {\n    if (node != null && this.isObjectProperty(node)) {\n      return this.isAssignable(node.value, isBinding);\n    }\n    return super.isAssignable(node, isBinding);\n  }\n  toAssignable(node, isLHS = false) {\n    if (node != null && this.isObjectProperty(node)) {\n      const {\n        key,\n        value\n      } = node;\n      if (this.isPrivateName(key)) {\n        this.classScope.usePrivateName(this.getPrivateNameSV(key), key.loc.start);\n      }\n      this.toAssignable(value, isLHS);\n    } else {\n      super.toAssignable(node, isLHS);\n    }\n  }\n  toAssignableObjectExpressionProp(prop, isLast, isLHS) {\n    if (prop.type === \"Property\" && (prop.kind === \"get\" || prop.kind === \"set\")) {\n      this.raise(Errors.PatternHasAccessor, prop.key);\n    } else if (prop.type === \"Property\" && prop.method) {\n      this.raise(Errors.PatternHasMethod, prop.key);\n    } else {\n      super.toAssignableObjectExpressionProp(prop, isLast, isLHS);\n    }\n  }\n  finishCallExpression(unfinished, optional) {\n    const node = super.finishCallExpression(unfinished, optional);\n    if (node.callee.type === \"Import\") {\n      var _ref;\n      this.castNodeTo(node, \"ImportExpression\");\n      node.source = node.arguments[0];\n      node.options = (_ref = node.arguments[1]) != null ? _ref : null;\n      {\n        var _ref2;\n        node.attributes = (_ref2 = node.arguments[1]) != null ? _ref2 : null;\n      }\n      delete node.arguments;\n      delete node.callee;\n    } else if (node.type === \"OptionalCallExpression\") {\n      this.castNodeTo(node, \"CallExpression\");\n    } else {\n      node.optional = false;\n    }\n    return node;\n  }\n  toReferencedArguments(node) {\n    if (node.type === \"ImportExpression\") {\n      return;\n    }\n    super.toReferencedArguments(node);\n  }\n  parseExport(unfinished, decorators) {\n    const exportStartLoc = this.state.lastTokStartLoc;\n    const node = super.parseExport(unfinished, decorators);\n    switch (node.type) {\n      case \"ExportAllDeclaration\":\n        node.exported = null;\n        break;\n      case \"ExportNamedDeclaration\":\n        if (node.specifiers.length === 1 && node.specifiers[0].type === \"ExportNamespaceSpecifier\") {\n          this.castNodeTo(node, \"ExportAllDeclaration\");\n          node.exported = node.specifiers[0].exported;\n          delete node.specifiers;\n        }\n      case \"ExportDefaultDeclaration\":\n        {\n          var _declaration$decorato;\n          const {\n            declaration\n          } = node;\n          if ((declaration == null ? void 0 : declaration.type) === \"ClassDeclaration\" && ((_declaration$decorato = declaration.decorators) == null ? void 0 : _declaration$decorato.length) > 0 && declaration.start === node.start) {\n            this.resetStartLocation(node, exportStartLoc);\n          }\n        }\n        break;\n    }\n    return node;\n  }\n  stopParseSubscript(base, state) {\n    const node = super.stopParseSubscript(base, state);\n    if (state.optionalChainMember) {\n      return this.estreeParseChainExpression(node, base.loc.end);\n    }\n    return node;\n  }\n  parseMember(base, startLoc, state, computed, optional) {\n    const node = super.parseMember(base, startLoc, state, computed, optional);\n    if (node.type === \"OptionalMemberExpression\") {\n      this.castNodeTo(node, \"MemberExpression\");\n    } else {\n      node.optional = false;\n    }\n    return node;\n  }\n  isOptionalMemberExpression(node) {\n    if (node.type === \"ChainExpression\") {\n      return node.expression.type === \"MemberExpression\";\n    }\n    return super.isOptionalMemberExpression(node);\n  }\n  hasPropertyAsPrivateName(node) {\n    if (node.type === \"ChainExpression\") {\n      node = node.expression;\n    }\n    return super.hasPropertyAsPrivateName(node);\n  }\n  isObjectProperty(node) {\n    return node.type === \"Property\" && node.kind === \"init\" && !node.method;\n  }\n  isObjectMethod(node) {\n    return node.type === \"Property\" && (node.method || node.kind === \"get\" || node.kind === \"set\");\n  }\n  castNodeTo(node, type) {\n    const result = super.castNodeTo(node, type);\n    this.fillOptionalPropertiesForTSESLint(result);\n    return result;\n  }\n  cloneIdentifier(node) {\n    const cloned = super.cloneIdentifier(node);\n    this.fillOptionalPropertiesForTSESLint(cloned);\n    return cloned;\n  }\n  cloneStringLiteral(node) {\n    if (node.type === \"Literal\") {\n      return this.cloneEstreeStringLiteral(node);\n    }\n    return super.cloneStringLiteral(node);\n  }\n  finishNodeAt(node, type, endLoc) {\n    return toESTreeLocation(super.finishNodeAt(node, type, endLoc));\n  }\n  finishNode(node, type) {\n    const result = super.finishNode(node, type);\n    this.fillOptionalPropertiesForTSESLint(result);\n    return result;\n  }\n  resetStartLocation(node, startLoc) {\n    super.resetStartLocation(node, startLoc);\n    toESTreeLocation(node);\n  }\n  resetEndLocation(node, endLoc = this.state.lastTokEndLoc) {\n    super.resetEndLocation(node, endLoc);\n    toESTreeLocation(node);\n  }\n};\nclass TokContext {\n  constructor(token, preserveSpace) {\n    this.token = void 0;\n    this.preserveSpace = void 0;\n    this.token = token;\n    this.preserveSpace = !!preserveSpace;\n  }\n}\nconst types = {\n  brace: new TokContext(\"{\"),\n  j_oTag: new TokContext(\"<tag\"),\n  j_cTag: new TokContext(\"</tag\"),\n  j_expr: new TokContext(\"<tag>...</tag>\", true)\n};\n{\n  types.template = new TokContext(\"`\", true);\n}\nconst beforeExpr = true;\nconst startsExpr = true;\nconst isLoop = true;\nconst isAssign = true;\nconst prefix = true;\nconst postfix = true;\nclass ExportedTokenType {\n  constructor(label, conf = {}) {\n    this.label = void 0;\n    this.keyword = void 0;\n    this.beforeExpr = void 0;\n    this.startsExpr = void 0;\n    this.rightAssociative = void 0;\n    this.isLoop = void 0;\n    this.isAssign = void 0;\n    this.prefix = void 0;\n    this.postfix = void 0;\n    this.binop = void 0;\n    this.label = label;\n    this.keyword = conf.keyword;\n    this.beforeExpr = !!conf.beforeExpr;\n    this.startsExpr = !!conf.startsExpr;\n    this.rightAssociative = !!conf.rightAssociative;\n    this.isLoop = !!conf.isLoop;\n    this.isAssign = !!conf.isAssign;\n    this.prefix = !!conf.prefix;\n    this.postfix = !!conf.postfix;\n    this.binop = conf.binop != null ? conf.binop : null;\n    {\n      this.updateContext = null;\n    }\n  }\n}\nconst keywords$1 = new Map();\nfunction createKeyword(name, options = {}) {\n  options.keyword = name;\n  const token = createToken(name, options);\n  keywords$1.set(name, token);\n  return token;\n}\nfunction createBinop(name, binop) {\n  return createToken(name, {\n    beforeExpr,\n    binop\n  });\n}\nlet tokenTypeCounter = -1;\nconst tokenTypes = [];\nconst tokenLabels = [];\nconst tokenBinops = [];\nconst tokenBeforeExprs = [];\nconst tokenStartsExprs = [];\nconst tokenPrefixes = [];\nfunction createToken(name, options = {}) {\n  var _options$binop, _options$beforeExpr, _options$startsExpr, _options$prefix;\n  ++tokenTypeCounter;\n  tokenLabels.push(name);\n  tokenBinops.push((_options$binop = options.binop) != null ? _options$binop : -1);\n  tokenBeforeExprs.push((_options$beforeExpr = options.beforeExpr) != null ? _options$beforeExpr : false);\n  tokenStartsExprs.push((_options$startsExpr = options.startsExpr) != null ? _options$startsExpr : false);\n  tokenPrefixes.push((_options$prefix = options.prefix) != null ? _options$prefix : false);\n  tokenTypes.push(new ExportedTokenType(name, options));\n  return tokenTypeCounter;\n}\nfunction createKeywordLike(name, options = {}) {\n  var _options$binop2, _options$beforeExpr2, _options$startsExpr2, _options$prefix2;\n  ++tokenTypeCounter;\n  keywords$1.set(name, tokenTypeCounter);\n  tokenLabels.push(name);\n  tokenBinops.push((_options$binop2 = options.binop) != null ? _options$binop2 : -1);\n  tokenBeforeExprs.push((_options$beforeExpr2 = options.beforeExpr) != null ? _options$beforeExpr2 : false);\n  tokenStartsExprs.push((_options$startsExpr2 = options.startsExpr) != null ? _options$startsExpr2 : false);\n  tokenPrefixes.push((_options$prefix2 = options.prefix) != null ? _options$prefix2 : false);\n  tokenTypes.push(new ExportedTokenType(\"name\", options));\n  return tokenTypeCounter;\n}\nconst tt = {\n  bracketL: createToken(\"[\", {\n    beforeExpr,\n    startsExpr\n  }),\n  bracketHashL: createToken(\"#[\", {\n    beforeExpr,\n    startsExpr\n  }),\n  bracketBarL: createToken(\"[|\", {\n    beforeExpr,\n    startsExpr\n  }),\n  bracketR: createToken(\"]\"),\n  bracketBarR: createToken(\"|]\"),\n  braceL: createToken(\"{\", {\n    beforeExpr,\n    startsExpr\n  }),\n  braceBarL: createToken(\"{|\", {\n    beforeExpr,\n    startsExpr\n  }),\n  braceHashL: createToken(\"#{\", {\n    beforeExpr,\n    startsExpr\n  }),\n  braceR: createToken(\"}\"),\n  braceBarR: createToken(\"|}\"),\n  parenL: createToken(\"(\", {\n    beforeExpr,\n    startsExpr\n  }),\n  parenR: createToken(\")\"),\n  comma: createToken(\",\", {\n    beforeExpr\n  }),\n  semi: createToken(\";\", {\n    beforeExpr\n  }),\n  colon: createToken(\":\", {\n    beforeExpr\n  }),\n  doubleColon: createToken(\"::\", {\n    beforeExpr\n  }),\n  dot: createToken(\".\"),\n  question: createToken(\"?\", {\n    beforeExpr\n  }),\n  questionDot: createToken(\"?.\"),\n  arrow: createToken(\"=>\", {\n    beforeExpr\n  }),\n  template: createToken(\"template\"),\n  ellipsis: createToken(\"...\", {\n    beforeExpr\n  }),\n  backQuote: createToken(\"`\", {\n    startsExpr\n  }),\n  dollarBraceL: createToken(\"${\", {\n    beforeExpr,\n    startsExpr\n  }),\n  templateTail: createToken(\"...`\", {\n    startsExpr\n  }),\n  templateNonTail: createToken(\"...${\", {\n    beforeExpr,\n    startsExpr\n  }),\n  at: createToken(\"@\"),\n  hash: createToken(\"#\", {\n    startsExpr\n  }),\n  interpreterDirective: createToken(\"#!...\"),\n  eq: createToken(\"=\", {\n    beforeExpr,\n    isAssign\n  }),\n  assign: createToken(\"_=\", {\n    beforeExpr,\n    isAssign\n  }),\n  slashAssign: createToken(\"_=\", {\n    beforeExpr,\n    isAssign\n  }),\n  xorAssign: createToken(\"_=\", {\n    beforeExpr,\n    isAssign\n  }),\n  moduloAssign: createToken(\"_=\", {\n    beforeExpr,\n    isAssign\n  }),\n  incDec: createToken(\"++/--\", {\n    prefix,\n    postfix,\n    startsExpr\n  }),\n  bang: createToken(\"!\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  tilde: createToken(\"~\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  doubleCaret: createToken(\"^^\", {\n    startsExpr\n  }),\n  doubleAt: createToken(\"@@\", {\n    startsExpr\n  }),\n  pipeline: createBinop(\"|>\", 0),\n  nullishCoalescing: createBinop(\"??\", 1),\n  logicalOR: createBinop(\"||\", 1),\n  logicalAND: createBinop(\"&&\", 2),\n  bitwiseOR: createBinop(\"|\", 3),\n  bitwiseXOR: createBinop(\"^\", 4),\n  bitwiseAND: createBinop(\"&\", 5),\n  equality: createBinop(\"==/!=/===/!==\", 6),\n  lt: createBinop(\"</>/<=/>=\", 7),\n  gt: createBinop(\"</>/<=/>=\", 7),\n  relational: createBinop(\"</>/<=/>=\", 7),\n  bitShift: createBinop(\"<</>>/>>>\", 8),\n  bitShiftL: createBinop(\"<</>>/>>>\", 8),\n  bitShiftR: createBinop(\"<</>>/>>>\", 8),\n  plusMin: createToken(\"+/-\", {\n    beforeExpr,\n    binop: 9,\n    prefix,\n    startsExpr\n  }),\n  modulo: createToken(\"%\", {\n    binop: 10,\n    startsExpr\n  }),\n  star: createToken(\"*\", {\n    binop: 10\n  }),\n  slash: createBinop(\"/\", 10),\n  exponent: createToken(\"**\", {\n    beforeExpr,\n    binop: 11,\n    rightAssociative: true\n  }),\n  _in: createKeyword(\"in\", {\n    beforeExpr,\n    binop: 7\n  }),\n  _instanceof: createKeyword(\"instanceof\", {\n    beforeExpr,\n    binop: 7\n  }),\n  _break: createKeyword(\"break\"),\n  _case: createKeyword(\"case\", {\n    beforeExpr\n  }),\n  _catch: createKeyword(\"catch\"),\n  _continue: createKeyword(\"continue\"),\n  _debugger: createKeyword(\"debugger\"),\n  _default: createKeyword(\"default\", {\n    beforeExpr\n  }),\n  _else: createKeyword(\"else\", {\n    beforeExpr\n  }),\n  _finally: createKeyword(\"finally\"),\n  _function: createKeyword(\"function\", {\n    startsExpr\n  }),\n  _if: createKeyword(\"if\"),\n  _return: createKeyword(\"return\", {\n    beforeExpr\n  }),\n  _switch: createKeyword(\"switch\"),\n  _throw: createKeyword(\"throw\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  _try: createKeyword(\"try\"),\n  _var: createKeyword(\"var\"),\n  _const: createKeyword(\"const\"),\n  _with: createKeyword(\"with\"),\n  _new: createKeyword(\"new\", {\n    beforeExpr,\n    startsExpr\n  }),\n  _this: createKeyword(\"this\", {\n    startsExpr\n  }),\n  _super: createKeyword(\"super\", {\n    startsExpr\n  }),\n  _class: createKeyword(\"class\", {\n    startsExpr\n  }),\n  _extends: createKeyword(\"extends\", {\n    beforeExpr\n  }),\n  _export: createKeyword(\"export\"),\n  _import: createKeyword(\"import\", {\n    startsExpr\n  }),\n  _null: createKeyword(\"null\", {\n    startsExpr\n  }),\n  _true: createKeyword(\"true\", {\n    startsExpr\n  }),\n  _false: createKeyword(\"false\", {\n    startsExpr\n  }),\n  _typeof: createKeyword(\"typeof\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  _void: createKeyword(\"void\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  _delete: createKeyword(\"delete\", {\n    beforeExpr,\n    prefix,\n    startsExpr\n  }),\n  _do: createKeyword(\"do\", {\n    isLoop,\n    beforeExpr\n  }),\n  _for: createKeyword(\"for\", {\n    isLoop\n  }),\n  _while: createKeyword(\"while\", {\n    isLoop\n  }),\n  _as: createKeywordLike(\"as\", {\n    startsExpr\n  }),\n  _assert: createKeywordLike(\"assert\", {\n    startsExpr\n  }),\n  _async: createKeywordLike(\"async\", {\n    startsExpr\n  }),\n  _await: createKeywordLike(\"await\", {\n    startsExpr\n  }),\n  _defer: createKeywordLike(\"defer\", {\n    startsExpr\n  }),\n  _from: createKeywordLike(\"from\", {\n    startsExpr\n  }),\n  _get: createKeywordLike(\"get\", {\n    startsExpr\n  }),\n  _let: createKeywordLike(\"let\", {\n    startsExpr\n  }),\n  _meta: createKeywordLike(\"meta\", {\n    startsExpr\n  }),\n  _of: createKeywordLike(\"of\", {\n    startsExpr\n  }),\n  _sent: createKeywordLike(\"sent\", {\n    startsExpr\n  }),\n  _set: createKeywordLike(\"set\", {\n    startsExpr\n  }),\n  _source: createKeywordLike(\"source\", {\n    startsExpr\n  }),\n  _static: createKeywordLike(\"static\", {\n    startsExpr\n  }),\n  _using: createKeywordLike(\"using\", {\n    startsExpr\n  }),\n  _yield: createKeywordLike(\"yield\", {\n    startsExpr\n  }),\n  _asserts: createKeywordLike(\"asserts\", {\n    startsExpr\n  }),\n  _checks: createKeywordLike(\"checks\", {\n    startsExpr\n  }),\n  _exports: createKeywordLike(\"exports\", {\n    startsExpr\n  }),\n  _global: createKeywordLike(\"global\", {\n    startsExpr\n  }),\n  _implements: createKeywordLike(\"implements\", {\n    startsExpr\n  }),\n  _intrinsic: createKeywordLike(\"intrinsic\", {\n    startsExpr\n  }),\n  _infer: createKeywordLike(\"infer\", {\n    startsExpr\n  }),\n  _is: createKeywordLike(\"is\", {\n    startsExpr\n  }),\n  _mixins: createKeywordLike(\"mixins\", {\n    startsExpr\n  }),\n  _proto: createKeywordLike(\"proto\", {\n    startsExpr\n  }),\n  _require: createKeywordLike(\"require\", {\n    startsExpr\n  }),\n  _satisfies: createKeywordLike(\"satisfies\", {\n    startsExpr\n  }),\n  _keyof: createKeywordLike(\"keyof\", {\n    startsExpr\n  }),\n  _readonly: createKeywordLike(\"readonly\", {\n    startsExpr\n  }),\n  _unique: createKeywordLike(\"unique\", {\n    startsExpr\n  }),\n  _abstract: createKeywordLike(\"abstract\", {\n    startsExpr\n  }),\n  _declare: createKeywordLike(\"declare\", {\n    startsExpr\n  }),\n  _enum: createKeywordLike(\"enum\", {\n    startsExpr\n  }),\n  _module: createKeywordLike(\"module\", {\n    startsExpr\n  }),\n  _namespace: createKeywordLike(\"namespace\", {\n    startsExpr\n  }),\n  _interface: createKeywordLike(\"interface\", {\n    startsExpr\n  }),\n  _type: createKeywordLike(\"type\", {\n    startsExpr\n  }),\n  _opaque: createKeywordLike(\"opaque\", {\n    startsExpr\n  }),\n  name: createToken(\"name\", {\n    startsExpr\n  }),\n  placeholder: createToken(\"%%\", {\n    startsExpr\n  }),\n  string: createToken(\"string\", {\n    startsExpr\n  }),\n  num: createToken(\"num\", {\n    startsExpr\n  }),\n  bigint: createToken(\"bigint\", {\n    startsExpr\n  }),\n  decimal: createToken(\"decimal\", {\n    startsExpr\n  }),\n  regexp: createToken(\"regexp\", {\n    startsExpr\n  }),\n  privateName: createToken(\"#name\", {\n    startsExpr\n  }),\n  eof: createToken(\"eof\"),\n  jsxName: createToken(\"jsxName\"),\n  jsxText: createToken(\"jsxText\", {\n    beforeExpr\n  }),\n  jsxTagStart: createToken(\"jsxTagStart\", {\n    startsExpr\n  }),\n  jsxTagEnd: createToken(\"jsxTagEnd\")\n};\nfunction tokenIsIdentifier(token) {\n  return token >= 93 && token <= 133;\n}\nfunction tokenKeywordOrIdentifierIsKeyword(token) {\n  return token <= 92;\n}\nfunction tokenIsKeywordOrIdentifier(token) {\n  return token >= 58 && token <= 133;\n}\nfunction tokenIsLiteralPropertyName(token) {\n  return token >= 58 && token <= 137;\n}\nfunction tokenComesBeforeExpression(token) {\n  return tokenBeforeExprs[token];\n}\nfunction tokenCanStartExpression(token) {\n  return tokenStartsExprs[token];\n}\nfunction tokenIsAssignment(token) {\n  return token >= 29 && token <= 33;\n}\nfunction tokenIsFlowInterfaceOrTypeOrOpaque(token) {\n  return token >= 129 && token <= 131;\n}\nfunction tokenIsLoop(token) {\n  return token >= 90 && token <= 92;\n}\nfunction tokenIsKeyword(token) {\n  return token >= 58 && token <= 92;\n}\nfunction tokenIsOperator(token) {\n  return token >= 39 && token <= 59;\n}\nfunction tokenIsPostfix(token) {\n  return token === 34;\n}\nfunction tokenIsPrefix(token) {\n  return tokenPrefixes[token];\n}\nfunction tokenIsTSTypeOperator(token) {\n  return token >= 121 && token <= 123;\n}\nfunction tokenIsTSDeclarationStart(token) {\n  return token >= 124 && token <= 130;\n}\nfunction tokenLabelName(token) {\n  return tokenLabels[token];\n}\nfunction tokenOperatorPrecedence(token) {\n  return tokenBinops[token];\n}\nfunction tokenIsRightAssociative(token) {\n  return token === 57;\n}\nfunction tokenIsTemplate(token) {\n  return token >= 24 && token <= 25;\n}\nfunction getExportedToken(token) {\n  return tokenTypes[token];\n}\n{\n  tokenTypes[8].updateContext = context => {\n    context.pop();\n  };\n  tokenTypes[5].updateContext = tokenTypes[7].updateContext = tokenTypes[23].updateContext = context => {\n    context.push(types.brace);\n  };\n  tokenTypes[22].updateContext = context => {\n    if (context[context.length - 1] === types.template) {\n      context.pop();\n    } else {\n      context.push(types.template);\n    }\n  };\n  tokenTypes[143].updateContext = context => {\n    context.push(types.j_expr, types.j_oTag);\n  };\n}\nlet nonASCIIidentifierStartChars = \"\\xaa\\xb5\\xba\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u02c1\\u02c6-\\u02d1\\u02e0-\\u02e4\\u02ec\\u02ee\\u0370-\\u0374\\u0376\\u0377\\u037a-\\u037d\\u037f\\u0386\\u0388-\\u038a\\u038c\\u038e-\\u03a1\\u03a3-\\u03f5\\u03f7-\\u0481\\u048a-\\u052f\\u0531-\\u0556\\u0559\\u0560-\\u0588\\u05d0-\\u05ea\\u05ef-\\u05f2\\u0620-\\u064a\\u066e\\u066f\\u0671-\\u06d3\\u06d5\\u06e5\\u06e6\\u06ee\\u06ef\\u06fa-\\u06fc\\u06ff\\u0710\\u0712-\\u072f\\u074d-\\u07a5\\u07b1\\u07ca-\\u07ea\\u07f4\\u07f5\\u07fa\\u0800-\\u0815\\u081a\\u0824\\u0828\\u0840-\\u0858\\u0860-\\u086a\\u0870-\\u0887\\u0889-\\u088f\\u08a0-\\u08c9\\u0904-\\u0939\\u093d\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098c\\u098f\\u0990\\u0993-\\u09a8\\u09aa-\\u09b0\\u09b2\\u09b6-\\u09b9\\u09bd\\u09ce\\u09dc\\u09dd\\u09df-\\u09e1\\u09f0\\u09f1\\u09fc\\u0a05-\\u0a0a\\u0a0f\\u0a10\\u0a13-\\u0a28\\u0a2a-\\u0a30\\u0a32\\u0a33\\u0a35\\u0a36\\u0a38\\u0a39\\u0a59-\\u0a5c\\u0a5e\\u0a72-\\u0a74\\u0a85-\\u0a8d\\u0a8f-\\u0a91\\u0a93-\\u0aa8\\u0aaa-\\u0ab0\\u0ab2\\u0ab3\\u0ab5-\\u0ab9\\u0abd\\u0ad0\\u0ae0\\u0ae1\\u0af9\\u0b05-\\u0b0c\\u0b0f\\u0b10\\u0b13-\\u0b28\\u0b2a-\\u0b30\\u0b32\\u0b33\\u0b35-\\u0b39\\u0b3d\\u0b5c\\u0b5d\\u0b5f-\\u0b61\\u0b71\\u0b83\\u0b85-\\u0b8a\\u0b8e-\\u0b90\\u0b92-\\u0b95\\u0b99\\u0b9a\\u0b9c\\u0b9e\\u0b9f\\u0ba3\\u0ba4\\u0ba8-\\u0baa\\u0bae-\\u0bb9\\u0bd0\\u0c05-\\u0c0c\\u0c0e-\\u0c10\\u0c12-\\u0c28\\u0c2a-\\u0c39\\u0c3d\\u0c58-\\u0c5a\\u0c5c\\u0c5d\\u0c60\\u0c61\\u0c80\\u0c85-\\u0c8c\\u0c8e-\\u0c90\\u0c92-\\u0ca8\\u0caa-\\u0cb3\\u0cb5-\\u0cb9\\u0cbd\\u0cdc-\\u0cde\\u0ce0\\u0ce1\\u0cf1\\u0cf2\\u0d04-\\u0d0c\\u0d0e-\\u0d10\\u0d12-\\u0d3a\\u0d3d\\u0d4e\\u0d54-\\u0d56\\u0d5f-\\u0d61\\u0d7a-\\u0d7f\\u0d85-\\u0d96\\u0d9a-\\u0db1\\u0db3-\\u0dbb\\u0dbd\\u0dc0-\\u0dc6\\u0e01-\\u0e30\\u0e32\\u0e33\\u0e40-\\u0e46\\u0e81\\u0e82\\u0e84\\u0e86-\\u0e8a\\u0e8c-\\u0ea3\\u0ea5\\u0ea7-\\u0eb0\\u0eb2\\u0eb3\\u0ebd\\u0ec0-\\u0ec4\\u0ec6\\u0edc-\\u0edf\\u0f00\\u0f40-\\u0f47\\u0f49-\\u0f6c\\u0f88-\\u0f8c\\u1000-\\u102a\\u103f\\u1050-\\u1055\\u105a-\\u105d\\u1061\\u1065\\u1066\\u106e-\\u1070\\u1075-\\u1081\\u108e\\u10a0-\\u10c5\\u10c7\\u10cd\\u10d0-\\u10fa\\u10fc-\\u1248\\u124a-\\u124d\\u1250-\\u1256\\u1258\\u125a-\\u125d\\u1260-\\u1288\\u128a-\\u128d\\u1290-\\u12b0\\u12b2-\\u12b5\\u12b8-\\u12be\\u12c0\\u12c2-\\u12c5\\u12c8-\\u12d6\\u12d8-\\u1310\\u1312-\\u1315\\u1318-\\u135a\\u1380-\\u138f\\u13a0-\\u13f5\\u13f8-\\u13fd\\u1401-\\u166c\\u166f-\\u167f\\u1681-\\u169a\\u16a0-\\u16ea\\u16ee-\\u16f8\\u1700-\\u1711\\u171f-\\u1731\\u1740-\\u1751\\u1760-\\u176c\\u176e-\\u1770\\u1780-\\u17b3\\u17d7\\u17dc\\u1820-\\u1878\\u1880-\\u18a8\\u18aa\\u18b0-\\u18f5\\u1900-\\u191e\\u1950-\\u196d\\u1970-\\u1974\\u1980-\\u19ab\\u19b0-\\u19c9\\u1a00-\\u1a16\\u1a20-\\u1a54\\u1aa7\\u1b05-\\u1b33\\u1b45-\\u1b4c\\u1b83-\\u1ba0\\u1bae\\u1baf\\u1bba-\\u1be5\\u1c00-\\u1c23\\u1c4d-\\u1c4f\\u1c5a-\\u1c7d\\u1c80-\\u1c8a\\u1c90-\\u1cba\\u1cbd-\\u1cbf\\u1ce9-\\u1cec\\u1cee-\\u1cf3\\u1cf5\\u1cf6\\u1cfa\\u1d00-\\u1dbf\\u1e00-\\u1f15\\u1f18-\\u1f1d\\u1f20-\\u1f45\\u1f48-\\u1f4d\\u1f50-\\u1f57\\u1f59\\u1f5b\\u1f5d\\u1f5f-\\u1f7d\\u1f80-\\u1fb4\\u1fb6-\\u1fbc\\u1fbe\\u1fc2-\\u1fc4\\u1fc6-\\u1fcc\\u1fd0-\\u1fd3\\u1fd6-\\u1fdb\\u1fe0-\\u1fec\\u1ff2-\\u1ff4\\u1ff6-\\u1ffc\\u2071\\u207f\\u2090-\\u209c\\u2102\\u2107\\u210a-\\u2113\\u2115\\u2118-\\u211d\\u2124\\u2126\\u2128\\u212a-\\u2139\\u213c-\\u213f\\u2145-\\u2149\\u214e\\u2160-\\u2188\\u2c00-\\u2ce4\\u2ceb-\\u2cee\\u2cf2\\u2cf3\\u2d00-\\u2d25\\u2d27\\u2d2d\\u2d30-\\u2d67\\u2d6f\\u2d80-\\u2d96\\u2da0-\\u2da6\\u2da8-\\u2dae\\u2db0-\\u2db6\\u2db8-\\u2dbe\\u2dc0-\\u2dc6\\u2dc8-\\u2dce\\u2dd0-\\u2dd6\\u2dd8-\\u2dde\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303c\\u3041-\\u3096\\u309b-\\u309f\\u30a1-\\u30fa\\u30fc-\\u30ff\\u3105-\\u312f\\u3131-\\u318e\\u31a0-\\u31bf\\u31f0-\\u31ff\\u3400-\\u4dbf\\u4e00-\\ua48c\\ua4d0-\\ua4fd\\ua500-\\ua60c\\ua610-\\ua61f\\ua62a\\ua62b\\ua640-\\ua66e\\ua67f-\\ua69d\\ua6a0-\\ua6ef\\ua717-\\ua71f\\ua722-\\ua788\\ua78b-\\ua7dc\\ua7f1-\\ua801\\ua803-\\ua805\\ua807-\\ua80a\\ua80c-\\ua822\\ua840-\\ua873\\ua882-\\ua8b3\\ua8f2-\\ua8f7\\ua8fb\\ua8fd\\ua8fe\\ua90a-\\ua925\\ua930-\\ua946\\ua960-\\ua97c\\ua984-\\ua9b2\\ua9cf\\ua9e0-\\ua9e4\\ua9e6-\\ua9ef\\ua9fa-\\ua9fe\\uaa00-\\uaa28\\uaa40-\\uaa42\\uaa44-\\uaa4b\\uaa60-\\uaa76\\uaa7a\\uaa7e-\\uaaaf\\uaab1\\uaab5\\uaab6\\uaab9-\\uaabd\\uaac0\\uaac2\\uaadb-\\uaadd\\uaae0-\\uaaea\\uaaf2-\\uaaf4\\uab01-\\uab06\\uab09-\\uab0e\\uab11-\\uab16\\uab20-\\uab26\\uab28-\\uab2e\\uab30-\\uab5a\\uab5c-\\uab69\\uab70-\\uabe2\\uac00-\\ud7a3\\ud7b0-\\ud7c6\\ud7cb-\\ud7fb\\uf900-\\ufa6d\\ufa70-\\ufad9\\ufb00-\\ufb06\\ufb13-\\ufb17\\ufb1d\\ufb1f-\\ufb28\\ufb2a-\\ufb36\\ufb38-\\ufb3c\\ufb3e\\ufb40\\ufb41\\ufb43\\ufb44\\ufb46-\\ufbb1\\ufbd3-\\ufd3d\\ufd50-\\ufd8f\\ufd92-\\ufdc7\\ufdf0-\\ufdfb\\ufe70-\\ufe74\\ufe76-\\ufefc\\uff21-\\uff3a\\uff41-\\uff5a\\uff66-\\uffbe\\uffc2-\\uffc7\\uffca-\\uffcf\\uffd2-\\uffd7\\uffda-\\uffdc\";\nlet nonASCIIidentifierChars = \"\\xb7\\u0300-\\u036f\\u0387\\u0483-\\u0487\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u0669\\u0670\\u06d6-\\u06dc\\u06df-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u06f0-\\u06f9\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07c0-\\u07c9\\u07eb-\\u07f3\\u07fd\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0859-\\u085b\\u0897-\\u089f\\u08ca-\\u08e1\\u08e3-\\u0903\\u093a-\\u093c\\u093e-\\u094f\\u0951-\\u0957\\u0962\\u0963\\u0966-\\u096f\\u0981-\\u0983\\u09bc\\u09be-\\u09c4\\u09c7\\u09c8\\u09cb-\\u09cd\\u09d7\\u09e2\\u09e3\\u09e6-\\u09ef\\u09fe\\u0a01-\\u0a03\\u0a3c\\u0a3e-\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a66-\\u0a71\\u0a75\\u0a81-\\u0a83\\u0abc\\u0abe-\\u0ac5\\u0ac7-\\u0ac9\\u0acb-\\u0acd\\u0ae2\\u0ae3\\u0ae6-\\u0aef\\u0afa-\\u0aff\\u0b01-\\u0b03\\u0b3c\\u0b3e-\\u0b44\\u0b47\\u0b48\\u0b4b-\\u0b4d\\u0b55-\\u0b57\\u0b62\\u0b63\\u0b66-\\u0b6f\\u0b82\\u0bbe-\\u0bc2\\u0bc6-\\u0bc8\\u0bca-\\u0bcd\\u0bd7\\u0be6-\\u0bef\\u0c00-\\u0c04\\u0c3c\\u0c3e-\\u0c44\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0c66-\\u0c6f\\u0c81-\\u0c83\\u0cbc\\u0cbe-\\u0cc4\\u0cc6-\\u0cc8\\u0cca-\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0ce6-\\u0cef\\u0cf3\\u0d00-\\u0d03\\u0d3b\\u0d3c\\u0d3e-\\u0d44\\u0d46-\\u0d48\\u0d4a-\\u0d4d\\u0d57\\u0d62\\u0d63\\u0d66-\\u0d6f\\u0d81-\\u0d83\\u0dca\\u0dcf-\\u0dd4\\u0dd6\\u0dd8-\\u0ddf\\u0de6-\\u0def\\u0df2\\u0df3\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0e50-\\u0e59\\u0eb1\\u0eb4-\\u0ebc\\u0ec8-\\u0ece\\u0ed0-\\u0ed9\\u0f18\\u0f19\\u0f20-\\u0f29\\u0f35\\u0f37\\u0f39\\u0f3e\\u0f3f\\u0f71-\\u0f84\\u0f86\\u0f87\\u0f8d-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102b-\\u103e\\u1040-\\u1049\\u1056-\\u1059\\u105e-\\u1060\\u1062-\\u1064\\u1067-\\u106d\\u1071-\\u1074\\u1082-\\u108d\\u108f-\\u109d\\u135d-\\u135f\\u1369-\\u1371\\u1712-\\u1715\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b4-\\u17d3\\u17dd\\u17e0-\\u17e9\\u180b-\\u180d\\u180f-\\u1819\\u18a9\\u1920-\\u192b\\u1930-\\u193b\\u1946-\\u194f\\u19d0-\\u19da\\u1a17-\\u1a1b\\u1a55-\\u1a5e\\u1a60-\\u1a7c\\u1a7f-\\u1a89\\u1a90-\\u1a99\\u1ab0-\\u1abd\\u1abf-\\u1add\\u1ae0-\\u1aeb\\u1b00-\\u1b04\\u1b34-\\u1b44\\u1b50-\\u1b59\\u1b6b-\\u1b73\\u1b80-\\u1b82\\u1ba1-\\u1bad\\u1bb0-\\u1bb9\\u1be6-\\u1bf3\\u1c24-\\u1c37\\u1c40-\\u1c49\\u1c50-\\u1c59\\u1cd0-\\u1cd2\\u1cd4-\\u1ce8\\u1ced\\u1cf4\\u1cf7-\\u1cf9\\u1dc0-\\u1dff\\u200c\\u200d\\u203f\\u2040\\u2054\\u20d0-\\u20dc\\u20e1\\u20e5-\\u20f0\\u2cef-\\u2cf1\\u2d7f\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\u30fb\\ua620-\\ua629\\ua66f\\ua674-\\ua67d\\ua69e\\ua69f\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua823-\\ua827\\ua82c\\ua880\\ua881\\ua8b4-\\ua8c5\\ua8d0-\\ua8d9\\ua8e0-\\ua8f1\\ua8ff-\\ua909\\ua926-\\ua92d\\ua947-\\ua953\\ua980-\\ua983\\ua9b3-\\ua9c0\\ua9d0-\\ua9d9\\ua9e5\\ua9f0-\\ua9f9\\uaa29-\\uaa36\\uaa43\\uaa4c\\uaa4d\\uaa50-\\uaa59\\uaa7b-\\uaa7d\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uaaeb-\\uaaef\\uaaf5\\uaaf6\\uabe3-\\uabea\\uabec\\uabed\\uabf0-\\uabf9\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe2f\\ufe33\\ufe34\\ufe4d-\\ufe4f\\uff10-\\uff19\\uff3f\\uff65\";\nconst nonASCIIidentifierStart = new RegExp(\"[\" + nonASCIIidentifierStartChars + \"]\");\nconst nonASCIIidentifier = new RegExp(\"[\" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + \"]\");\nnonASCIIidentifierStartChars = nonASCIIidentifierChars = null;\nconst astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 4, 51, 13, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 7, 25, 39, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 39, 27, 10, 22, 251, 41, 7, 1, 17, 5, 57, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 20, 1, 64, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 31, 9, 2, 0, 3, 0, 2, 37, 2, 0, 26, 0, 2, 0, 45, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 200, 32, 32, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 24, 43, 261, 18, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 26, 3994, 6, 582, 6842, 29, 1763, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 433, 44, 212, 63, 33, 24, 3, 24, 45, 74, 6, 0, 67, 12, 65, 1, 2, 0, 15, 4, 10, 7381, 42, 31, 98, 114, 8702, 3, 2, 6, 2, 1, 2, 290, 16, 0, 30, 2, 3, 0, 15, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 229, 29, 3, 0, 208, 30, 2, 2, 2, 1, 2, 6, 3, 4, 10, 1, 225, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4381, 3, 5773, 3, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 8489];\nconst astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 7, 9, 32, 4, 318, 1, 78, 5, 71, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 3, 0, 158, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 68, 8, 2, 0, 3, 0, 2, 3, 2, 4, 2, 0, 15, 1, 83, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 7, 19, 58, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 199, 7, 137, 9, 54, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 55, 9, 266, 3, 10, 1, 2, 0, 49, 6, 4, 4, 14, 10, 5350, 0, 7, 14, 11465, 27, 2343, 9, 87, 9, 39, 4, 60, 6, 26, 9, 535, 9, 470, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4178, 9, 519, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 245, 1, 2, 9, 233, 0, 3, 0, 8, 1, 6, 0, 475, 6, 110, 6, 6, 9, 4759, 9, 787719, 239];\nfunction isInAstralSet(code, set) {\n  let pos = 0x10000;\n  for (let i = 0, length = set.length; i < length; i += 2) {\n    pos += set[i];\n    if (pos > code) return false;\n    pos += set[i + 1];\n    if (pos >= code) return true;\n  }\n  return false;\n}\nfunction isIdentifierStart(code) {\n  if (code < 65) return code === 36;\n  if (code <= 90) return true;\n  if (code < 97) return code === 95;\n  if (code <= 122) return true;\n  if (code <= 0xffff) {\n    return code >= 0xaa && nonASCIIidentifierStart.test(String.fromCharCode(code));\n  }\n  return isInAstralSet(code, astralIdentifierStartCodes);\n}\nfunction isIdentifierChar(code) {\n  if (code < 48) return code === 36;\n  if (code < 58) return true;\n  if (code < 65) return false;\n  if (code <= 90) return true;\n  if (code < 97) return code === 95;\n  if (code <= 122) return true;\n  if (code <= 0xffff) {\n    return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code));\n  }\n  return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes);\n}\nconst reservedWords = {\n  keyword: [\"break\", \"case\", \"catch\", \"continue\", \"debugger\", \"default\", \"do\", \"else\", \"finally\", \"for\", \"function\", \"if\", \"return\", \"switch\", \"throw\", \"try\", \"var\", \"const\", \"while\", \"with\", \"new\", \"this\", \"super\", \"class\", \"extends\", \"export\", \"import\", \"null\", \"true\", \"false\", \"in\", \"instanceof\", \"typeof\", \"void\", \"delete\"],\n  strict: [\"implements\", \"interface\", \"let\", \"package\", \"private\", \"protected\", \"public\", \"static\", \"yield\"],\n  strictBind: [\"eval\", \"arguments\"]\n};\nconst keywords = new Set(reservedWords.keyword);\nconst reservedWordsStrictSet = new Set(reservedWords.strict);\nconst reservedWordsStrictBindSet = new Set(reservedWords.strictBind);\nfunction isReservedWord(word, inModule) {\n  return inModule && word === \"await\" || word === \"enum\";\n}\nfunction isStrictReservedWord(word, inModule) {\n  return isReservedWord(word, inModule) || reservedWordsStrictSet.has(word);\n}\nfunction isStrictBindOnlyReservedWord(word) {\n  return reservedWordsStrictBindSet.has(word);\n}\nfunction isStrictBindReservedWord(word, inModule) {\n  return isStrictReservedWord(word, inModule) || isStrictBindOnlyReservedWord(word);\n}\nfunction isKeyword(word) {\n  return keywords.has(word);\n}\nfunction isIteratorStart(current, next, next2) {\n  return current === 64 && next === 64 && isIdentifierStart(next2);\n}\nconst reservedWordLikeSet = new Set([\"break\", \"case\", \"catch\", \"continue\", \"debugger\", \"default\", \"do\", \"else\", \"finally\", \"for\", \"function\", \"if\", \"return\", \"switch\", \"throw\", \"try\", \"var\", \"const\", \"while\", \"with\", \"new\", \"this\", \"super\", \"class\", \"extends\", \"export\", \"import\", \"null\", \"true\", \"false\", \"in\", \"instanceof\", \"typeof\", \"void\", \"delete\", \"implements\", \"interface\", \"let\", \"package\", \"private\", \"protected\", \"public\", \"static\", \"yield\", \"eval\", \"arguments\", \"enum\", \"await\"]);\nfunction canBeReservedWord(word) {\n  return reservedWordLikeSet.has(word);\n}\nclass Scope {\n  constructor(flags) {\n    this.flags = 0;\n    this.names = new Map();\n    this.firstLexicalName = \"\";\n    this.flags = flags;\n  }\n}\nclass ScopeHandler {\n  constructor(parser, inModule) {\n    this.parser = void 0;\n    this.scopeStack = [];\n    this.inModule = void 0;\n    this.undefinedExports = new Map();\n    this.parser = parser;\n    this.inModule = inModule;\n  }\n  get inTopLevel() {\n    return (this.currentScope().flags & 1) > 0;\n  }\n  get inFunction() {\n    return (this.currentVarScopeFlags() & 2) > 0;\n  }\n  get allowSuper() {\n    return (this.currentThisScopeFlags() & 16) > 0;\n  }\n  get allowDirectSuper() {\n    return (this.currentThisScopeFlags() & 32) > 0;\n  }\n  get allowNewTarget() {\n    return (this.currentThisScopeFlags() & 512) > 0;\n  }\n  get inClass() {\n    return (this.currentThisScopeFlags() & 64) > 0;\n  }\n  get inClassAndNotInNonArrowFunction() {\n    const flags = this.currentThisScopeFlags();\n    return (flags & 64) > 0 && (flags & 2) === 0;\n  }\n  get inStaticBlock() {\n    for (let i = this.scopeStack.length - 1;; i--) {\n      const {\n        flags\n      } = this.scopeStack[i];\n      if (flags & 128) {\n        return true;\n      }\n      if (flags & (1667 | 64)) {\n        return false;\n      }\n    }\n  }\n  get inNonArrowFunction() {\n    return (this.currentThisScopeFlags() & 2) > 0;\n  }\n  get inBareCaseStatement() {\n    return (this.currentScope().flags & 256) > 0;\n  }\n  get treatFunctionsAsVar() {\n    return this.treatFunctionsAsVarInScope(this.currentScope());\n  }\n  createScope(flags) {\n    return new Scope(flags);\n  }\n  enter(flags) {\n    this.scopeStack.push(this.createScope(flags));\n  }\n  exit() {\n    const scope = this.scopeStack.pop();\n    return scope.flags;\n  }\n  treatFunctionsAsVarInScope(scope) {\n    return !!(scope.flags & (2 | 128) || !this.parser.inModule && scope.flags & 1);\n  }\n  declareName(name, bindingType, loc) {\n    let scope = this.currentScope();\n    if (bindingType & 8 || bindingType & 16) {\n      this.checkRedeclarationInScope(scope, name, bindingType, loc);\n      let type = scope.names.get(name) || 0;\n      if (bindingType & 16) {\n        type = type | 4;\n      } else {\n        if (!scope.firstLexicalName) {\n          scope.firstLexicalName = name;\n        }\n        type = type | 2;\n      }\n      scope.names.set(name, type);\n      if (bindingType & 8) {\n        this.maybeExportDefined(scope, name);\n      }\n    } else if (bindingType & 4) {\n      for (let i = this.scopeStack.length - 1; i >= 0; --i) {\n        scope = this.scopeStack[i];\n        this.checkRedeclarationInScope(scope, name, bindingType, loc);\n        scope.names.set(name, (scope.names.get(name) || 0) | 1);\n        this.maybeExportDefined(scope, name);\n        if (scope.flags & 1667) break;\n      }\n    }\n    if (this.parser.inModule && scope.flags & 1) {\n      this.undefinedExports.delete(name);\n    }\n  }\n  maybeExportDefined(scope, name) {\n    if (this.parser.inModule && scope.flags & 1) {\n      this.undefinedExports.delete(name);\n    }\n  }\n  checkRedeclarationInScope(scope, name, bindingType, loc) {\n    if (this.isRedeclaredInScope(scope, name, bindingType)) {\n      this.parser.raise(Errors.VarRedeclaration, loc, {\n        identifierName: name\n      });\n    }\n  }\n  isRedeclaredInScope(scope, name, bindingType) {\n    if (!(bindingType & 1)) return false;\n    if (bindingType & 8) {\n      return scope.names.has(name);\n    }\n    const type = scope.names.get(name) || 0;\n    if (bindingType & 16) {\n      return (type & 2) > 0 || !this.treatFunctionsAsVarInScope(scope) && (type & 1) > 0;\n    }\n    return (type & 2) > 0 && !(scope.flags & 8 && scope.firstLexicalName === name) || !this.treatFunctionsAsVarInScope(scope) && (type & 4) > 0;\n  }\n  checkLocalExport(id) {\n    const {\n      name\n    } = id;\n    const topLevelScope = this.scopeStack[0];\n    if (!topLevelScope.names.has(name)) {\n      this.undefinedExports.set(name, id.loc.start);\n    }\n  }\n  currentScope() {\n    return this.scopeStack[this.scopeStack.length - 1];\n  }\n  currentVarScopeFlags() {\n    for (let i = this.scopeStack.length - 1;; i--) {\n      const {\n        flags\n      } = this.scopeStack[i];\n      if (flags & 1667) {\n        return flags;\n      }\n    }\n  }\n  currentThisScopeFlags() {\n    for (let i = this.scopeStack.length - 1;; i--) {\n      const {\n        flags\n      } = this.scopeStack[i];\n      if (flags & (1667 | 64) && !(flags & 4)) {\n        return flags;\n      }\n    }\n  }\n}\nclass FlowScope extends Scope {\n  constructor(...args) {\n    super(...args);\n    this.declareFunctions = new Set();\n  }\n}\nclass FlowScopeHandler extends ScopeHandler {\n  createScope(flags) {\n    return new FlowScope(flags);\n  }\n  declareName(name, bindingType, loc) {\n    const scope = this.currentScope();\n    if (bindingType & 2048) {\n      this.checkRedeclarationInScope(scope, name, bindingType, loc);\n      this.maybeExportDefined(scope, name);\n      scope.declareFunctions.add(name);\n      return;\n    }\n    super.declareName(name, bindingType, loc);\n  }\n  isRedeclaredInScope(scope, name, bindingType) {\n    if (super.isRedeclaredInScope(scope, name, bindingType)) return true;\n    if (bindingType & 2048 && !scope.declareFunctions.has(name)) {\n      const type = scope.names.get(name);\n      return (type & 4) > 0 || (type & 2) > 0;\n    }\n    return false;\n  }\n  checkLocalExport(id) {\n    if (!this.scopeStack[0].declareFunctions.has(id.name)) {\n      super.checkLocalExport(id);\n    }\n  }\n}\nconst reservedTypes = new Set([\"_\", \"any\", \"bool\", \"boolean\", \"empty\", \"extends\", \"false\", \"interface\", \"mixed\", \"null\", \"number\", \"static\", \"string\", \"true\", \"typeof\", \"void\"]);\nconst FlowErrors = ParseErrorEnum`flow`({\n  AmbiguousConditionalArrow: \"Ambiguous expression: wrap the arrow functions in parentheses to disambiguate.\",\n  AmbiguousDeclareModuleKind: \"Found both `declare module.exports` and `declare export` in the same module. Modules can only have 1 since they are either an ES module or they are a CommonJS module.\",\n  AssignReservedType: ({\n    reservedType\n  }) => `Cannot overwrite reserved type ${reservedType}.`,\n  DeclareClassElement: \"The `declare` modifier can only appear on class fields.\",\n  DeclareClassFieldInitializer: \"Initializers are not allowed in fields with the `declare` modifier.\",\n  DuplicateDeclareModuleExports: \"Duplicate `declare module.exports` statement.\",\n  EnumBooleanMemberNotInitialized: ({\n    memberName,\n    enumName\n  }) => `Boolean enum members need to be initialized. Use either \\`${memberName} = true,\\` or \\`${memberName} = false,\\` in enum \\`${enumName}\\`.`,\n  EnumDuplicateMemberName: ({\n    memberName,\n    enumName\n  }) => `Enum member names need to be unique, but the name \\`${memberName}\\` has already been used before in enum \\`${enumName}\\`.`,\n  EnumInconsistentMemberValues: ({\n    enumName\n  }) => `Enum \\`${enumName}\\` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.`,\n  EnumInvalidExplicitType: ({\n    invalidEnumType,\n    enumName\n  }) => `Enum type \\`${invalidEnumType}\\` is not valid. Use one of \\`boolean\\`, \\`number\\`, \\`string\\`, or \\`symbol\\` in enum \\`${enumName}\\`.`,\n  EnumInvalidExplicitTypeUnknownSupplied: ({\n    enumName\n  }) => `Supplied enum type is not valid. Use one of \\`boolean\\`, \\`number\\`, \\`string\\`, or \\`symbol\\` in enum \\`${enumName}\\`.`,\n  EnumInvalidMemberInitializerPrimaryType: ({\n    enumName,\n    memberName,\n    explicitType\n  }) => `Enum \\`${enumName}\\` has type \\`${explicitType}\\`, so the initializer of \\`${memberName}\\` needs to be a ${explicitType} literal.`,\n  EnumInvalidMemberInitializerSymbolType: ({\n    enumName,\n    memberName\n  }) => `Symbol enum members cannot be initialized. Use \\`${memberName},\\` in enum \\`${enumName}\\`.`,\n  EnumInvalidMemberInitializerUnknownType: ({\n    enumName,\n    memberName\n  }) => `The enum member initializer for \\`${memberName}\\` needs to be a literal (either a boolean, number, or string) in enum \\`${enumName}\\`.`,\n  EnumInvalidMemberName: ({\n    enumName,\n    memberName,\n    suggestion\n  }) => `Enum member names cannot start with lowercase 'a' through 'z'. Instead of using \\`${memberName}\\`, consider using \\`${suggestion}\\`, in enum \\`${enumName}\\`.`,\n  EnumNumberMemberNotInitialized: ({\n    enumName,\n    memberName\n  }) => `Number enum members need to be initialized, e.g. \\`${memberName} = 1\\` in enum \\`${enumName}\\`.`,\n  EnumStringMemberInconsistentlyInitialized: ({\n    enumName\n  }) => `String enum members need to consistently either all use initializers, or use no initializers, in enum \\`${enumName}\\`.`,\n  GetterMayNotHaveThisParam: \"A getter cannot have a `this` parameter.\",\n  ImportReflectionHasImportType: \"An `import module` declaration can not use `type` or `typeof` keyword.\",\n  ImportTypeShorthandOnlyInPureImport: \"The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. It cannot be used with `import type` or `import typeof` statements.\",\n  InexactInsideExact: \"Explicit inexact syntax cannot appear inside an explicit exact object type.\",\n  InexactInsideNonObject: \"Explicit inexact syntax cannot appear in class or interface definitions.\",\n  InexactVariance: \"Explicit inexact syntax cannot have variance.\",\n  InvalidNonTypeImportInDeclareModule: \"Imports within a `declare module` body must always be `import type` or `import typeof`.\",\n  MissingTypeParamDefault: \"Type parameter declaration needs a default, since a preceding type parameter declaration has a default.\",\n  NestedDeclareModule: \"`declare module` cannot be used inside another `declare module`.\",\n  NestedFlowComment: \"Cannot have a flow comment inside another flow comment.\",\n  PatternIsOptional: Object.assign({\n    message: \"A binding pattern parameter cannot be optional in an implementation signature.\"\n  }, {\n    reasonCode: \"OptionalBindingPattern\"\n  }),\n  SetterMayNotHaveThisParam: \"A setter cannot have a `this` parameter.\",\n  SpreadVariance: \"Spread properties cannot have variance.\",\n  ThisParamAnnotationRequired: \"A type annotation is required for the `this` parameter.\",\n  ThisParamBannedInConstructor: \"Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.\",\n  ThisParamMayNotBeOptional: \"The `this` parameter cannot be optional.\",\n  ThisParamMustBeFirst: \"The `this` parameter must be the first function parameter.\",\n  ThisParamNoDefault: \"The `this` parameter may not have a default value.\",\n  TypeBeforeInitializer: \"Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`.\",\n  TypeCastInPattern: \"The type cast expression is expected to be wrapped with parenthesis.\",\n  UnexpectedExplicitInexactInObject: \"Explicit inexact syntax must appear at the end of an inexact object.\",\n  UnexpectedReservedType: ({\n    reservedType\n  }) => `Unexpected reserved type ${reservedType}.`,\n  UnexpectedReservedUnderscore: \"`_` is only allowed as a type argument to call or new.\",\n  UnexpectedSpaceBetweenModuloChecks: \"Spaces between `%` and `checks` are not allowed here.\",\n  UnexpectedSpreadType: \"Spread operator cannot appear in class or interface definitions.\",\n  UnexpectedSubtractionOperand: 'Unexpected token, expected \"number\" or \"bigint\".',\n  UnexpectedTokenAfterTypeParameter: \"Expected an arrow function after this type parameter declaration.\",\n  UnexpectedTypeParameterBeforeAsyncArrowFunction: \"Type parameters must come after the async keyword, e.g. instead of `<T> async () => {}`, use `async <T>() => {}`.\",\n  UnsupportedDeclareExportKind: ({\n    unsupportedExportKind,\n    suggestion\n  }) => `\\`declare export ${unsupportedExportKind}\\` is not supported. Use \\`${suggestion}\\` instead.`,\n  UnsupportedStatementInDeclareModule: \"Only declares and type imports are allowed inside declare module.\",\n  UnterminatedFlowComment: \"Unterminated flow-comment.\"\n});\nfunction isEsModuleType(bodyElement) {\n  return bodyElement.type === \"DeclareExportAllDeclaration\" || bodyElement.type === \"DeclareExportDeclaration\" && (!bodyElement.declaration || bodyElement.declaration.type !== \"TypeAlias\" && bodyElement.declaration.type !== \"InterfaceDeclaration\");\n}\nfunction hasTypeImportKind(node) {\n  return node.importKind === \"type\" || node.importKind === \"typeof\";\n}\nconst exportSuggestions = {\n  const: \"declare export var\",\n  let: \"declare export var\",\n  type: \"export type\",\n  interface: \"export interface\"\n};\nfunction partition(list, test) {\n  const list1 = [];\n  const list2 = [];\n  for (let i = 0; i < list.length; i++) {\n    (test(list[i], i, list) ? list1 : list2).push(list[i]);\n  }\n  return [list1, list2];\n}\nconst FLOW_PRAGMA_REGEX = /\\*?\\s*@((?:no)?flow)\\b/;\nvar flow = superClass => class FlowParserMixin extends superClass {\n  constructor(...args) {\n    super(...args);\n    this.flowPragma = undefined;\n  }\n  getScopeHandler() {\n    return FlowScopeHandler;\n  }\n  shouldParseTypes() {\n    return this.getPluginOption(\"flow\", \"all\") || this.flowPragma === \"flow\";\n  }\n  finishToken(type, val) {\n    if (type !== 134 && type !== 13 && type !== 28) {\n      if (this.flowPragma === undefined) {\n        this.flowPragma = null;\n      }\n    }\n    super.finishToken(type, val);\n  }\n  addComment(comment) {\n    if (this.flowPragma === undefined) {\n      const matches = FLOW_PRAGMA_REGEX.exec(comment.value);\n      if (!matches) ;else if (matches[1] === \"flow\") {\n        this.flowPragma = \"flow\";\n      } else if (matches[1] === \"noflow\") {\n        this.flowPragma = \"noflow\";\n      } else {\n        throw new Error(\"Unexpected flow pragma\");\n      }\n    }\n    super.addComment(comment);\n  }\n  flowParseTypeInitialiser(tok) {\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    this.expect(tok || 14);\n    const type = this.flowParseType();\n    this.state.inType = oldInType;\n    return type;\n  }\n  flowParsePredicate() {\n    const node = this.startNode();\n    const moduloLoc = this.state.startLoc;\n    this.next();\n    this.expectContextual(110);\n    if (this.state.lastTokStartLoc.index > moduloLoc.index + 1) {\n      this.raise(FlowErrors.UnexpectedSpaceBetweenModuloChecks, moduloLoc);\n    }\n    if (this.eat(10)) {\n      node.value = super.parseExpression();\n      this.expect(11);\n      return this.finishNode(node, \"DeclaredPredicate\");\n    } else {\n      return this.finishNode(node, \"InferredPredicate\");\n    }\n  }\n  flowParseTypeAndPredicateInitialiser() {\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    this.expect(14);\n    let type = null;\n    let predicate = null;\n    if (this.match(54)) {\n      this.state.inType = oldInType;\n      predicate = this.flowParsePredicate();\n    } else {\n      type = this.flowParseType();\n      this.state.inType = oldInType;\n      if (this.match(54)) {\n        predicate = this.flowParsePredicate();\n      }\n    }\n    return [type, predicate];\n  }\n  flowParseDeclareClass(node) {\n    this.next();\n    this.flowParseInterfaceish(node, true);\n    return this.finishNode(node, \"DeclareClass\");\n  }\n  flowParseDeclareFunction(node) {\n    this.next();\n    const id = node.id = this.parseIdentifier();\n    const typeNode = this.startNode();\n    const typeContainer = this.startNode();\n    if (this.match(47)) {\n      typeNode.typeParameters = this.flowParseTypeParameterDeclaration();\n    } else {\n      typeNode.typeParameters = null;\n    }\n    this.expect(10);\n    const tmp = this.flowParseFunctionTypeParams();\n    typeNode.params = tmp.params;\n    typeNode.rest = tmp.rest;\n    typeNode.this = tmp._this;\n    this.expect(11);\n    [typeNode.returnType, node.predicate] = this.flowParseTypeAndPredicateInitialiser();\n    typeContainer.typeAnnotation = this.finishNode(typeNode, \"FunctionTypeAnnotation\");\n    id.typeAnnotation = this.finishNode(typeContainer, \"TypeAnnotation\");\n    this.resetEndLocation(id);\n    this.semicolon();\n    this.scope.declareName(node.id.name, 2048, node.id.loc.start);\n    return this.finishNode(node, \"DeclareFunction\");\n  }\n  flowParseDeclare(node, insideModule) {\n    if (this.match(80)) {\n      return this.flowParseDeclareClass(node);\n    } else if (this.match(68)) {\n      return this.flowParseDeclareFunction(node);\n    } else if (this.match(74)) {\n      return this.flowParseDeclareVariable(node);\n    } else if (this.eatContextual(127)) {\n      if (this.match(16)) {\n        return this.flowParseDeclareModuleExports(node);\n      } else {\n        if (insideModule) {\n          this.raise(FlowErrors.NestedDeclareModule, this.state.lastTokStartLoc);\n        }\n        return this.flowParseDeclareModule(node);\n      }\n    } else if (this.isContextual(130)) {\n      return this.flowParseDeclareTypeAlias(node);\n    } else if (this.isContextual(131)) {\n      return this.flowParseDeclareOpaqueType(node);\n    } else if (this.isContextual(129)) {\n      return this.flowParseDeclareInterface(node);\n    } else if (this.match(82)) {\n      return this.flowParseDeclareExportDeclaration(node, insideModule);\n    }\n    throw this.unexpected();\n  }\n  flowParseDeclareVariable(node) {\n    this.next();\n    node.id = this.flowParseTypeAnnotatableIdentifier(true);\n    this.scope.declareName(node.id.name, 5, node.id.loc.start);\n    this.semicolon();\n    return this.finishNode(node, \"DeclareVariable\");\n  }\n  flowParseDeclareModule(node) {\n    this.scope.enter(0);\n    if (this.match(134)) {\n      node.id = super.parseExprAtom();\n    } else {\n      node.id = this.parseIdentifier();\n    }\n    const bodyNode = node.body = this.startNode();\n    const body = bodyNode.body = [];\n    this.expect(5);\n    while (!this.match(8)) {\n      const bodyNode = this.startNode();\n      if (this.match(83)) {\n        this.next();\n        if (!this.isContextual(130) && !this.match(87)) {\n          this.raise(FlowErrors.InvalidNonTypeImportInDeclareModule, this.state.lastTokStartLoc);\n        }\n        body.push(super.parseImport(bodyNode));\n      } else {\n        this.expectContextual(125, FlowErrors.UnsupportedStatementInDeclareModule);\n        body.push(this.flowParseDeclare(bodyNode, true));\n      }\n    }\n    this.scope.exit();\n    this.expect(8);\n    this.finishNode(bodyNode, \"BlockStatement\");\n    let kind = null;\n    let hasModuleExport = false;\n    body.forEach(bodyElement => {\n      if (isEsModuleType(bodyElement)) {\n        if (kind === \"CommonJS\") {\n          this.raise(FlowErrors.AmbiguousDeclareModuleKind, bodyElement);\n        }\n        kind = \"ES\";\n      } else if (bodyElement.type === \"DeclareModuleExports\") {\n        if (hasModuleExport) {\n          this.raise(FlowErrors.DuplicateDeclareModuleExports, bodyElement);\n        }\n        if (kind === \"ES\") {\n          this.raise(FlowErrors.AmbiguousDeclareModuleKind, bodyElement);\n        }\n        kind = \"CommonJS\";\n        hasModuleExport = true;\n      }\n    });\n    node.kind = kind || \"CommonJS\";\n    return this.finishNode(node, \"DeclareModule\");\n  }\n  flowParseDeclareExportDeclaration(node, insideModule) {\n    this.expect(82);\n    if (this.eat(65)) {\n      if (this.match(68) || this.match(80)) {\n        node.declaration = this.flowParseDeclare(this.startNode());\n      } else {\n        node.declaration = this.flowParseType();\n        this.semicolon();\n      }\n      node.default = true;\n      return this.finishNode(node, \"DeclareExportDeclaration\");\n    } else {\n      if (this.match(75) || this.isLet() || (this.isContextual(130) || this.isContextual(129)) && !insideModule) {\n        const label = this.state.value;\n        throw this.raise(FlowErrors.UnsupportedDeclareExportKind, this.state.startLoc, {\n          unsupportedExportKind: label,\n          suggestion: exportSuggestions[label]\n        });\n      }\n      if (this.match(74) || this.match(68) || this.match(80) || this.isContextual(131)) {\n        node.declaration = this.flowParseDeclare(this.startNode());\n        node.default = false;\n        return this.finishNode(node, \"DeclareExportDeclaration\");\n      } else if (this.match(55) || this.match(5) || this.isContextual(129) || this.isContextual(130) || this.isContextual(131)) {\n        node = this.parseExport(node, null);\n        if (node.type === \"ExportNamedDeclaration\") {\n          node.default = false;\n          delete node.exportKind;\n          return this.castNodeTo(node, \"DeclareExportDeclaration\");\n        } else {\n          return this.castNodeTo(node, \"DeclareExportAllDeclaration\");\n        }\n      }\n    }\n    throw this.unexpected();\n  }\n  flowParseDeclareModuleExports(node) {\n    this.next();\n    this.expectContextual(111);\n    node.typeAnnotation = this.flowParseTypeAnnotation();\n    this.semicolon();\n    return this.finishNode(node, \"DeclareModuleExports\");\n  }\n  flowParseDeclareTypeAlias(node) {\n    this.next();\n    const finished = this.flowParseTypeAlias(node);\n    this.castNodeTo(finished, \"DeclareTypeAlias\");\n    return finished;\n  }\n  flowParseDeclareOpaqueType(node) {\n    this.next();\n    const finished = this.flowParseOpaqueType(node, true);\n    this.castNodeTo(finished, \"DeclareOpaqueType\");\n    return finished;\n  }\n  flowParseDeclareInterface(node) {\n    this.next();\n    this.flowParseInterfaceish(node, false);\n    return this.finishNode(node, \"DeclareInterface\");\n  }\n  flowParseInterfaceish(node, isClass) {\n    node.id = this.flowParseRestrictedIdentifier(!isClass, true);\n    this.scope.declareName(node.id.name, isClass ? 17 : 8201, node.id.loc.start);\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    } else {\n      node.typeParameters = null;\n    }\n    node.extends = [];\n    if (this.eat(81)) {\n      do {\n        node.extends.push(this.flowParseInterfaceExtends());\n      } while (!isClass && this.eat(12));\n    }\n    if (isClass) {\n      node.implements = [];\n      node.mixins = [];\n      if (this.eatContextual(117)) {\n        do {\n          node.mixins.push(this.flowParseInterfaceExtends());\n        } while (this.eat(12));\n      }\n      if (this.eatContextual(113)) {\n        do {\n          node.implements.push(this.flowParseInterfaceExtends());\n        } while (this.eat(12));\n      }\n    }\n    node.body = this.flowParseObjectType({\n      allowStatic: isClass,\n      allowExact: false,\n      allowSpread: false,\n      allowProto: isClass,\n      allowInexact: false\n    });\n  }\n  flowParseInterfaceExtends() {\n    const node = this.startNode();\n    node.id = this.flowParseQualifiedTypeIdentifier();\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterInstantiation();\n    } else {\n      node.typeParameters = null;\n    }\n    return this.finishNode(node, \"InterfaceExtends\");\n  }\n  flowParseInterface(node) {\n    this.flowParseInterfaceish(node, false);\n    return this.finishNode(node, \"InterfaceDeclaration\");\n  }\n  checkNotUnderscore(word) {\n    if (word === \"_\") {\n      this.raise(FlowErrors.UnexpectedReservedUnderscore, this.state.startLoc);\n    }\n  }\n  checkReservedType(word, startLoc, declaration) {\n    if (!reservedTypes.has(word)) return;\n    this.raise(declaration ? FlowErrors.AssignReservedType : FlowErrors.UnexpectedReservedType, startLoc, {\n      reservedType: word\n    });\n  }\n  flowParseRestrictedIdentifier(liberal, declaration) {\n    this.checkReservedType(this.state.value, this.state.startLoc, declaration);\n    return this.parseIdentifier(liberal);\n  }\n  flowParseTypeAlias(node) {\n    node.id = this.flowParseRestrictedIdentifier(false, true);\n    this.scope.declareName(node.id.name, 8201, node.id.loc.start);\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    } else {\n      node.typeParameters = null;\n    }\n    node.right = this.flowParseTypeInitialiser(29);\n    this.semicolon();\n    return this.finishNode(node, \"TypeAlias\");\n  }\n  flowParseOpaqueType(node, declare) {\n    this.expectContextual(130);\n    node.id = this.flowParseRestrictedIdentifier(true, true);\n    this.scope.declareName(node.id.name, 8201, node.id.loc.start);\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    } else {\n      node.typeParameters = null;\n    }\n    node.supertype = null;\n    if (this.match(14)) {\n      node.supertype = this.flowParseTypeInitialiser(14);\n    }\n    node.impltype = null;\n    if (!declare) {\n      node.impltype = this.flowParseTypeInitialiser(29);\n    }\n    this.semicolon();\n    return this.finishNode(node, \"OpaqueType\");\n  }\n  flowParseTypeParameter(requireDefault = false) {\n    const nodeStartLoc = this.state.startLoc;\n    const node = this.startNode();\n    const variance = this.flowParseVariance();\n    const ident = this.flowParseTypeAnnotatableIdentifier();\n    node.name = ident.name;\n    node.variance = variance;\n    node.bound = ident.typeAnnotation;\n    if (this.match(29)) {\n      this.eat(29);\n      node.default = this.flowParseType();\n    } else {\n      if (requireDefault) {\n        this.raise(FlowErrors.MissingTypeParamDefault, nodeStartLoc);\n      }\n    }\n    return this.finishNode(node, \"TypeParameter\");\n  }\n  flowParseTypeParameterDeclaration() {\n    const oldInType = this.state.inType;\n    const node = this.startNode();\n    node.params = [];\n    this.state.inType = true;\n    if (this.match(47) || this.match(143)) {\n      this.next();\n    } else {\n      this.unexpected();\n    }\n    let defaultRequired = false;\n    do {\n      const typeParameter = this.flowParseTypeParameter(defaultRequired);\n      node.params.push(typeParameter);\n      if (typeParameter.default) {\n        defaultRequired = true;\n      }\n      if (!this.match(48)) {\n        this.expect(12);\n      }\n    } while (!this.match(48));\n    this.expect(48);\n    this.state.inType = oldInType;\n    return this.finishNode(node, \"TypeParameterDeclaration\");\n  }\n  flowInTopLevelContext(cb) {\n    if (this.curContext() !== types.brace) {\n      const oldContext = this.state.context;\n      this.state.context = [oldContext[0]];\n      try {\n        return cb();\n      } finally {\n        this.state.context = oldContext;\n      }\n    } else {\n      return cb();\n    }\n  }\n  flowParseTypeParameterInstantiationInExpression() {\n    if (this.reScan_lt() !== 47) return;\n    return this.flowParseTypeParameterInstantiation();\n  }\n  flowParseTypeParameterInstantiation() {\n    const node = this.startNode();\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    node.params = [];\n    this.flowInTopLevelContext(() => {\n      this.expect(47);\n      const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n      this.state.noAnonFunctionType = false;\n      while (!this.match(48)) {\n        node.params.push(this.flowParseType());\n        if (!this.match(48)) {\n          this.expect(12);\n        }\n      }\n      this.state.noAnonFunctionType = oldNoAnonFunctionType;\n    });\n    this.state.inType = oldInType;\n    if (!this.state.inType && this.curContext() === types.brace) {\n      this.reScan_lt_gt();\n    }\n    this.expect(48);\n    return this.finishNode(node, \"TypeParameterInstantiation\");\n  }\n  flowParseTypeParameterInstantiationCallOrNew() {\n    if (this.reScan_lt() !== 47) return null;\n    const node = this.startNode();\n    const oldInType = this.state.inType;\n    node.params = [];\n    this.state.inType = true;\n    this.expect(47);\n    while (!this.match(48)) {\n      node.params.push(this.flowParseTypeOrImplicitInstantiation());\n      if (!this.match(48)) {\n        this.expect(12);\n      }\n    }\n    this.expect(48);\n    this.state.inType = oldInType;\n    return this.finishNode(node, \"TypeParameterInstantiation\");\n  }\n  flowParseInterfaceType() {\n    const node = this.startNode();\n    this.expectContextual(129);\n    node.extends = [];\n    if (this.eat(81)) {\n      do {\n        node.extends.push(this.flowParseInterfaceExtends());\n      } while (this.eat(12));\n    }\n    node.body = this.flowParseObjectType({\n      allowStatic: false,\n      allowExact: false,\n      allowSpread: false,\n      allowProto: false,\n      allowInexact: false\n    });\n    return this.finishNode(node, \"InterfaceTypeAnnotation\");\n  }\n  flowParseObjectPropertyKey() {\n    return this.match(135) || this.match(134) ? super.parseExprAtom() : this.parseIdentifier(true);\n  }\n  flowParseObjectTypeIndexer(node, isStatic, variance) {\n    node.static = isStatic;\n    if (this.lookahead().type === 14) {\n      node.id = this.flowParseObjectPropertyKey();\n      node.key = this.flowParseTypeInitialiser();\n    } else {\n      node.id = null;\n      node.key = this.flowParseType();\n    }\n    this.expect(3);\n    node.value = this.flowParseTypeInitialiser();\n    node.variance = variance;\n    return this.finishNode(node, \"ObjectTypeIndexer\");\n  }\n  flowParseObjectTypeInternalSlot(node, isStatic) {\n    node.static = isStatic;\n    node.id = this.flowParseObjectPropertyKey();\n    this.expect(3);\n    this.expect(3);\n    if (this.match(47) || this.match(10)) {\n      node.method = true;\n      node.optional = false;\n      node.value = this.flowParseObjectTypeMethodish(this.startNodeAt(node.loc.start));\n    } else {\n      node.method = false;\n      if (this.eat(17)) {\n        node.optional = true;\n      }\n      node.value = this.flowParseTypeInitialiser();\n    }\n    return this.finishNode(node, \"ObjectTypeInternalSlot\");\n  }\n  flowParseObjectTypeMethodish(node) {\n    node.params = [];\n    node.rest = null;\n    node.typeParameters = null;\n    node.this = null;\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    }\n    this.expect(10);\n    if (this.match(78)) {\n      node.this = this.flowParseFunctionTypeParam(true);\n      node.this.name = null;\n      if (!this.match(11)) {\n        this.expect(12);\n      }\n    }\n    while (!this.match(11) && !this.match(21)) {\n      node.params.push(this.flowParseFunctionTypeParam(false));\n      if (!this.match(11)) {\n        this.expect(12);\n      }\n    }\n    if (this.eat(21)) {\n      node.rest = this.flowParseFunctionTypeParam(false);\n    }\n    this.expect(11);\n    node.returnType = this.flowParseTypeInitialiser();\n    return this.finishNode(node, \"FunctionTypeAnnotation\");\n  }\n  flowParseObjectTypeCallProperty(node, isStatic) {\n    const valueNode = this.startNode();\n    node.static = isStatic;\n    node.value = this.flowParseObjectTypeMethodish(valueNode);\n    return this.finishNode(node, \"ObjectTypeCallProperty\");\n  }\n  flowParseObjectType({\n    allowStatic,\n    allowExact,\n    allowSpread,\n    allowProto,\n    allowInexact\n  }) {\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    const nodeStart = this.startNode();\n    nodeStart.callProperties = [];\n    nodeStart.properties = [];\n    nodeStart.indexers = [];\n    nodeStart.internalSlots = [];\n    let endDelim;\n    let exact;\n    let inexact = false;\n    if (allowExact && this.match(6)) {\n      this.expect(6);\n      endDelim = 9;\n      exact = true;\n    } else {\n      this.expect(5);\n      endDelim = 8;\n      exact = false;\n    }\n    nodeStart.exact = exact;\n    while (!this.match(endDelim)) {\n      let isStatic = false;\n      let protoStartLoc = null;\n      let inexactStartLoc = null;\n      const node = this.startNode();\n      if (allowProto && this.isContextual(118)) {\n        const lookahead = this.lookahead();\n        if (lookahead.type !== 14 && lookahead.type !== 17) {\n          this.next();\n          protoStartLoc = this.state.startLoc;\n          allowStatic = false;\n        }\n      }\n      if (allowStatic && this.isContextual(106)) {\n        const lookahead = this.lookahead();\n        if (lookahead.type !== 14 && lookahead.type !== 17) {\n          this.next();\n          isStatic = true;\n        }\n      }\n      const variance = this.flowParseVariance();\n      if (this.eat(0)) {\n        if (protoStartLoc != null) {\n          this.unexpected(protoStartLoc);\n        }\n        if (this.eat(0)) {\n          if (variance) {\n            this.unexpected(variance.loc.start);\n          }\n          nodeStart.internalSlots.push(this.flowParseObjectTypeInternalSlot(node, isStatic));\n        } else {\n          nodeStart.indexers.push(this.flowParseObjectTypeIndexer(node, isStatic, variance));\n        }\n      } else if (this.match(10) || this.match(47)) {\n        if (protoStartLoc != null) {\n          this.unexpected(protoStartLoc);\n        }\n        if (variance) {\n          this.unexpected(variance.loc.start);\n        }\n        nodeStart.callProperties.push(this.flowParseObjectTypeCallProperty(node, isStatic));\n      } else {\n        let kind = \"init\";\n        if (this.isContextual(99) || this.isContextual(104)) {\n          const lookahead = this.lookahead();\n          if (tokenIsLiteralPropertyName(lookahead.type)) {\n            kind = this.state.value;\n            this.next();\n          }\n        }\n        const propOrInexact = this.flowParseObjectTypeProperty(node, isStatic, protoStartLoc, variance, kind, allowSpread, allowInexact != null ? allowInexact : !exact);\n        if (propOrInexact === null) {\n          inexact = true;\n          inexactStartLoc = this.state.lastTokStartLoc;\n        } else {\n          nodeStart.properties.push(propOrInexact);\n        }\n      }\n      this.flowObjectTypeSemicolon();\n      if (inexactStartLoc && !this.match(8) && !this.match(9)) {\n        this.raise(FlowErrors.UnexpectedExplicitInexactInObject, inexactStartLoc);\n      }\n    }\n    this.expect(endDelim);\n    if (allowSpread) {\n      nodeStart.inexact = inexact;\n    }\n    const out = this.finishNode(nodeStart, \"ObjectTypeAnnotation\");\n    this.state.inType = oldInType;\n    return out;\n  }\n  flowParseObjectTypeProperty(node, isStatic, protoStartLoc, variance, kind, allowSpread, allowInexact) {\n    if (this.eat(21)) {\n      const isInexactToken = this.match(12) || this.match(13) || this.match(8) || this.match(9);\n      if (isInexactToken) {\n        if (!allowSpread) {\n          this.raise(FlowErrors.InexactInsideNonObject, this.state.lastTokStartLoc);\n        } else if (!allowInexact) {\n          this.raise(FlowErrors.InexactInsideExact, this.state.lastTokStartLoc);\n        }\n        if (variance) {\n          this.raise(FlowErrors.InexactVariance, variance);\n        }\n        return null;\n      }\n      if (!allowSpread) {\n        this.raise(FlowErrors.UnexpectedSpreadType, this.state.lastTokStartLoc);\n      }\n      if (protoStartLoc != null) {\n        this.unexpected(protoStartLoc);\n      }\n      if (variance) {\n        this.raise(FlowErrors.SpreadVariance, variance);\n      }\n      node.argument = this.flowParseType();\n      return this.finishNode(node, \"ObjectTypeSpreadProperty\");\n    } else {\n      node.key = this.flowParseObjectPropertyKey();\n      node.static = isStatic;\n      node.proto = protoStartLoc != null;\n      node.kind = kind;\n      let optional = false;\n      if (this.match(47) || this.match(10)) {\n        node.method = true;\n        if (protoStartLoc != null) {\n          this.unexpected(protoStartLoc);\n        }\n        if (variance) {\n          this.unexpected(variance.loc.start);\n        }\n        node.value = this.flowParseObjectTypeMethodish(this.startNodeAt(node.loc.start));\n        if (kind === \"get\" || kind === \"set\") {\n          this.flowCheckGetterSetterParams(node);\n        }\n        if (!allowSpread && node.key.name === \"constructor\" && node.value.this) {\n          this.raise(FlowErrors.ThisParamBannedInConstructor, node.value.this);\n        }\n      } else {\n        if (kind !== \"init\") this.unexpected();\n        node.method = false;\n        if (this.eat(17)) {\n          optional = true;\n        }\n        node.value = this.flowParseTypeInitialiser();\n        node.variance = variance;\n      }\n      node.optional = optional;\n      return this.finishNode(node, \"ObjectTypeProperty\");\n    }\n  }\n  flowCheckGetterSetterParams(property) {\n    const paramCount = property.kind === \"get\" ? 0 : 1;\n    const length = property.value.params.length + (property.value.rest ? 1 : 0);\n    if (property.value.this) {\n      this.raise(property.kind === \"get\" ? FlowErrors.GetterMayNotHaveThisParam : FlowErrors.SetterMayNotHaveThisParam, property.value.this);\n    }\n    if (length !== paramCount) {\n      this.raise(property.kind === \"get\" ? Errors.BadGetterArity : Errors.BadSetterArity, property);\n    }\n    if (property.kind === \"set\" && property.value.rest) {\n      this.raise(Errors.BadSetterRestParameter, property);\n    }\n  }\n  flowObjectTypeSemicolon() {\n    if (!this.eat(13) && !this.eat(12) && !this.match(8) && !this.match(9)) {\n      this.unexpected();\n    }\n  }\n  flowParseQualifiedTypeIdentifier(startLoc, id) {\n    startLoc != null ? startLoc : startLoc = this.state.startLoc;\n    let node = id || this.flowParseRestrictedIdentifier(true);\n    while (this.eat(16)) {\n      const node2 = this.startNodeAt(startLoc);\n      node2.qualification = node;\n      node2.id = this.flowParseRestrictedIdentifier(true);\n      node = this.finishNode(node2, \"QualifiedTypeIdentifier\");\n    }\n    return node;\n  }\n  flowParseGenericType(startLoc, id) {\n    const node = this.startNodeAt(startLoc);\n    node.typeParameters = null;\n    node.id = this.flowParseQualifiedTypeIdentifier(startLoc, id);\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterInstantiation();\n    }\n    return this.finishNode(node, \"GenericTypeAnnotation\");\n  }\n  flowParseTypeofType() {\n    const node = this.startNode();\n    this.expect(87);\n    node.argument = this.flowParsePrimaryType();\n    return this.finishNode(node, \"TypeofTypeAnnotation\");\n  }\n  flowParseTupleType() {\n    const node = this.startNode();\n    node.types = [];\n    this.expect(0);\n    while (this.state.pos < this.length && !this.match(3)) {\n      node.types.push(this.flowParseType());\n      if (this.match(3)) break;\n      this.expect(12);\n    }\n    this.expect(3);\n    return this.finishNode(node, \"TupleTypeAnnotation\");\n  }\n  flowParseFunctionTypeParam(first) {\n    let name = null;\n    let optional = false;\n    let typeAnnotation = null;\n    const node = this.startNode();\n    const lh = this.lookahead();\n    const isThis = this.state.type === 78;\n    if (lh.type === 14 || lh.type === 17) {\n      if (isThis && !first) {\n        this.raise(FlowErrors.ThisParamMustBeFirst, node);\n      }\n      name = this.parseIdentifier(isThis);\n      if (this.eat(17)) {\n        optional = true;\n        if (isThis) {\n          this.raise(FlowErrors.ThisParamMayNotBeOptional, node);\n        }\n      }\n      typeAnnotation = this.flowParseTypeInitialiser();\n    } else {\n      typeAnnotation = this.flowParseType();\n    }\n    node.name = name;\n    node.optional = optional;\n    node.typeAnnotation = typeAnnotation;\n    return this.finishNode(node, \"FunctionTypeParam\");\n  }\n  reinterpretTypeAsFunctionTypeParam(type) {\n    const node = this.startNodeAt(type.loc.start);\n    node.name = null;\n    node.optional = false;\n    node.typeAnnotation = type;\n    return this.finishNode(node, \"FunctionTypeParam\");\n  }\n  flowParseFunctionTypeParams(params = []) {\n    let rest = null;\n    let _this = null;\n    if (this.match(78)) {\n      _this = this.flowParseFunctionTypeParam(true);\n      _this.name = null;\n      if (!this.match(11)) {\n        this.expect(12);\n      }\n    }\n    while (!this.match(11) && !this.match(21)) {\n      params.push(this.flowParseFunctionTypeParam(false));\n      if (!this.match(11)) {\n        this.expect(12);\n      }\n    }\n    if (this.eat(21)) {\n      rest = this.flowParseFunctionTypeParam(false);\n    }\n    return {\n      params,\n      rest,\n      _this\n    };\n  }\n  flowIdentToTypeAnnotation(startLoc, node, id) {\n    switch (id.name) {\n      case \"any\":\n        return this.finishNode(node, \"AnyTypeAnnotation\");\n      case \"bool\":\n      case \"boolean\":\n        return this.finishNode(node, \"BooleanTypeAnnotation\");\n      case \"mixed\":\n        return this.finishNode(node, \"MixedTypeAnnotation\");\n      case \"empty\":\n        return this.finishNode(node, \"EmptyTypeAnnotation\");\n      case \"number\":\n        return this.finishNode(node, \"NumberTypeAnnotation\");\n      case \"string\":\n        return this.finishNode(node, \"StringTypeAnnotation\");\n      case \"symbol\":\n        return this.finishNode(node, \"SymbolTypeAnnotation\");\n      default:\n        this.checkNotUnderscore(id.name);\n        return this.flowParseGenericType(startLoc, id);\n    }\n  }\n  flowParsePrimaryType() {\n    const startLoc = this.state.startLoc;\n    const node = this.startNode();\n    let tmp;\n    let type;\n    let isGroupedType = false;\n    const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n    switch (this.state.type) {\n      case 5:\n        return this.flowParseObjectType({\n          allowStatic: false,\n          allowExact: false,\n          allowSpread: true,\n          allowProto: false,\n          allowInexact: true\n        });\n      case 6:\n        return this.flowParseObjectType({\n          allowStatic: false,\n          allowExact: true,\n          allowSpread: true,\n          allowProto: false,\n          allowInexact: false\n        });\n      case 0:\n        this.state.noAnonFunctionType = false;\n        type = this.flowParseTupleType();\n        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n        return type;\n      case 47:\n        {\n          const node = this.startNode();\n          node.typeParameters = this.flowParseTypeParameterDeclaration();\n          this.expect(10);\n          tmp = this.flowParseFunctionTypeParams();\n          node.params = tmp.params;\n          node.rest = tmp.rest;\n          node.this = tmp._this;\n          this.expect(11);\n          this.expect(19);\n          node.returnType = this.flowParseType();\n          return this.finishNode(node, \"FunctionTypeAnnotation\");\n        }\n      case 10:\n        {\n          const node = this.startNode();\n          this.next();\n          if (!this.match(11) && !this.match(21)) {\n            if (tokenIsIdentifier(this.state.type) || this.match(78)) {\n              const token = this.lookahead().type;\n              isGroupedType = token !== 17 && token !== 14;\n            } else {\n              isGroupedType = true;\n            }\n          }\n          if (isGroupedType) {\n            this.state.noAnonFunctionType = false;\n            type = this.flowParseType();\n            this.state.noAnonFunctionType = oldNoAnonFunctionType;\n            if (this.state.noAnonFunctionType || !(this.match(12) || this.match(11) && this.lookahead().type === 19)) {\n              this.expect(11);\n              return type;\n            } else {\n              this.eat(12);\n            }\n          }\n          if (type) {\n            tmp = this.flowParseFunctionTypeParams([this.reinterpretTypeAsFunctionTypeParam(type)]);\n          } else {\n            tmp = this.flowParseFunctionTypeParams();\n          }\n          node.params = tmp.params;\n          node.rest = tmp.rest;\n          node.this = tmp._this;\n          this.expect(11);\n          this.expect(19);\n          node.returnType = this.flowParseType();\n          node.typeParameters = null;\n          return this.finishNode(node, \"FunctionTypeAnnotation\");\n        }\n      case 134:\n        return this.parseLiteral(this.state.value, \"StringLiteralTypeAnnotation\");\n      case 85:\n      case 86:\n        node.value = this.match(85);\n        this.next();\n        return this.finishNode(node, \"BooleanLiteralTypeAnnotation\");\n      case 53:\n        if (this.state.value === \"-\") {\n          this.next();\n          if (this.match(135)) {\n            return this.parseLiteralAtNode(-this.state.value, \"NumberLiteralTypeAnnotation\", node);\n          }\n          if (this.match(136)) {\n            return this.parseLiteralAtNode(-this.state.value, \"BigIntLiteralTypeAnnotation\", node);\n          }\n          throw this.raise(FlowErrors.UnexpectedSubtractionOperand, this.state.startLoc);\n        }\n        throw this.unexpected();\n      case 135:\n        return this.parseLiteral(this.state.value, \"NumberLiteralTypeAnnotation\");\n      case 136:\n        return this.parseLiteral(this.state.value, \"BigIntLiteralTypeAnnotation\");\n      case 88:\n        this.next();\n        return this.finishNode(node, \"VoidTypeAnnotation\");\n      case 84:\n        this.next();\n        return this.finishNode(node, \"NullLiteralTypeAnnotation\");\n      case 78:\n        this.next();\n        return this.finishNode(node, \"ThisTypeAnnotation\");\n      case 55:\n        this.next();\n        return this.finishNode(node, \"ExistsTypeAnnotation\");\n      case 87:\n        return this.flowParseTypeofType();\n      default:\n        if (tokenIsKeyword(this.state.type)) {\n          const label = tokenLabelName(this.state.type);\n          this.next();\n          return super.createIdentifier(node, label);\n        } else if (tokenIsIdentifier(this.state.type)) {\n          if (this.isContextual(129)) {\n            return this.flowParseInterfaceType();\n          }\n          return this.flowIdentToTypeAnnotation(startLoc, node, this.parseIdentifier());\n        }\n    }\n    throw this.unexpected();\n  }\n  flowParsePostfixType() {\n    const startLoc = this.state.startLoc;\n    let type = this.flowParsePrimaryType();\n    let seenOptionalIndexedAccess = false;\n    while ((this.match(0) || this.match(18)) && !this.canInsertSemicolon()) {\n      const node = this.startNodeAt(startLoc);\n      const optional = this.eat(18);\n      seenOptionalIndexedAccess = seenOptionalIndexedAccess || optional;\n      this.expect(0);\n      if (!optional && this.match(3)) {\n        node.elementType = type;\n        this.next();\n        type = this.finishNode(node, \"ArrayTypeAnnotation\");\n      } else {\n        node.objectType = type;\n        node.indexType = this.flowParseType();\n        this.expect(3);\n        if (seenOptionalIndexedAccess) {\n          node.optional = optional;\n          type = this.finishNode(node, \"OptionalIndexedAccessType\");\n        } else {\n          type = this.finishNode(node, \"IndexedAccessType\");\n        }\n      }\n    }\n    return type;\n  }\n  flowParsePrefixType() {\n    const node = this.startNode();\n    if (this.eat(17)) {\n      node.typeAnnotation = this.flowParsePrefixType();\n      return this.finishNode(node, \"NullableTypeAnnotation\");\n    } else {\n      return this.flowParsePostfixType();\n    }\n  }\n  flowParseAnonFunctionWithoutParens() {\n    const param = this.flowParsePrefixType();\n    if (!this.state.noAnonFunctionType && this.eat(19)) {\n      const node = this.startNodeAt(param.loc.start);\n      node.params = [this.reinterpretTypeAsFunctionTypeParam(param)];\n      node.rest = null;\n      node.this = null;\n      node.returnType = this.flowParseType();\n      node.typeParameters = null;\n      return this.finishNode(node, \"FunctionTypeAnnotation\");\n    }\n    return param;\n  }\n  flowParseIntersectionType() {\n    const node = this.startNode();\n    this.eat(45);\n    const type = this.flowParseAnonFunctionWithoutParens();\n    node.types = [type];\n    while (this.eat(45)) {\n      node.types.push(this.flowParseAnonFunctionWithoutParens());\n    }\n    return node.types.length === 1 ? type : this.finishNode(node, \"IntersectionTypeAnnotation\");\n  }\n  flowParseUnionType() {\n    const node = this.startNode();\n    this.eat(43);\n    const type = this.flowParseIntersectionType();\n    node.types = [type];\n    while (this.eat(43)) {\n      node.types.push(this.flowParseIntersectionType());\n    }\n    return node.types.length === 1 ? type : this.finishNode(node, \"UnionTypeAnnotation\");\n  }\n  flowParseType() {\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    const type = this.flowParseUnionType();\n    this.state.inType = oldInType;\n    return type;\n  }\n  flowParseTypeOrImplicitInstantiation() {\n    if (this.state.type === 132 && this.state.value === \"_\") {\n      const startLoc = this.state.startLoc;\n      const node = this.parseIdentifier();\n      return this.flowParseGenericType(startLoc, node);\n    } else {\n      return this.flowParseType();\n    }\n  }\n  flowParseTypeAnnotation() {\n    const node = this.startNode();\n    node.typeAnnotation = this.flowParseTypeInitialiser();\n    return this.finishNode(node, \"TypeAnnotation\");\n  }\n  flowParseTypeAnnotatableIdentifier(allowPrimitiveOverride) {\n    const ident = allowPrimitiveOverride ? this.parseIdentifier() : this.flowParseRestrictedIdentifier();\n    if (this.match(14)) {\n      ident.typeAnnotation = this.flowParseTypeAnnotation();\n      this.resetEndLocation(ident);\n    }\n    return ident;\n  }\n  typeCastToParameter(node) {\n    node.expression.typeAnnotation = node.typeAnnotation;\n    this.resetEndLocation(node.expression, node.typeAnnotation.loc.end);\n    return node.expression;\n  }\n  flowParseVariance() {\n    let variance = null;\n    if (this.match(53)) {\n      variance = this.startNode();\n      if (this.state.value === \"+\") {\n        variance.kind = \"plus\";\n      } else {\n        variance.kind = \"minus\";\n      }\n      this.next();\n      return this.finishNode(variance, \"Variance\");\n    }\n    return variance;\n  }\n  parseFunctionBody(node, allowExpressionBody, isMethod = false) {\n    if (allowExpressionBody) {\n      this.forwardNoArrowParamsConversionAt(node, () => super.parseFunctionBody(node, true, isMethod));\n      return;\n    }\n    super.parseFunctionBody(node, false, isMethod);\n  }\n  parseFunctionBodyAndFinish(node, type, isMethod = false) {\n    if (this.match(14)) {\n      const typeNode = this.startNode();\n      [typeNode.typeAnnotation, node.predicate] = this.flowParseTypeAndPredicateInitialiser();\n      node.returnType = typeNode.typeAnnotation ? this.finishNode(typeNode, \"TypeAnnotation\") : null;\n    }\n    return super.parseFunctionBodyAndFinish(node, type, isMethod);\n  }\n  parseStatementLike(flags) {\n    if (this.state.strict && this.isContextual(129)) {\n      const lookahead = this.lookahead();\n      if (tokenIsKeywordOrIdentifier(lookahead.type)) {\n        const node = this.startNode();\n        this.next();\n        return this.flowParseInterface(node);\n      }\n    } else if (this.isContextual(126)) {\n      const node = this.startNode();\n      this.next();\n      return this.flowParseEnumDeclaration(node);\n    }\n    const stmt = super.parseStatementLike(flags);\n    if (this.flowPragma === undefined && !this.isValidDirective(stmt)) {\n      this.flowPragma = null;\n    }\n    return stmt;\n  }\n  parseExpressionStatement(node, expr, decorators) {\n    if (expr.type === \"Identifier\") {\n      if (expr.name === \"declare\") {\n        if (this.match(80) || tokenIsIdentifier(this.state.type) || this.match(68) || this.match(74) || this.match(82)) {\n          return this.flowParseDeclare(node);\n        }\n      } else if (tokenIsIdentifier(this.state.type)) {\n        if (expr.name === \"interface\") {\n          return this.flowParseInterface(node);\n        } else if (expr.name === \"type\") {\n          return this.flowParseTypeAlias(node);\n        } else if (expr.name === \"opaque\") {\n          return this.flowParseOpaqueType(node, false);\n        }\n      }\n    }\n    return super.parseExpressionStatement(node, expr, decorators);\n  }\n  shouldParseExportDeclaration() {\n    const {\n      type\n    } = this.state;\n    if (type === 126 || tokenIsFlowInterfaceOrTypeOrOpaque(type)) {\n      return !this.state.containsEsc;\n    }\n    return super.shouldParseExportDeclaration();\n  }\n  isExportDefaultSpecifier() {\n    const {\n      type\n    } = this.state;\n    if (type === 126 || tokenIsFlowInterfaceOrTypeOrOpaque(type)) {\n      return this.state.containsEsc;\n    }\n    return super.isExportDefaultSpecifier();\n  }\n  parseExportDefaultExpression() {\n    if (this.isContextual(126)) {\n      const node = this.startNode();\n      this.next();\n      return this.flowParseEnumDeclaration(node);\n    }\n    return super.parseExportDefaultExpression();\n  }\n  parseConditional(expr, startLoc, refExpressionErrors) {\n    if (!this.match(17)) return expr;\n    if (this.state.maybeInArrowParameters) {\n      const nextCh = this.lookaheadCharCode();\n      if (nextCh === 44 || nextCh === 61 || nextCh === 58 || nextCh === 41) {\n        this.setOptionalParametersError(refExpressionErrors);\n        return expr;\n      }\n    }\n    this.expect(17);\n    const state = this.state.clone();\n    const originalNoArrowAt = this.state.noArrowAt;\n    const node = this.startNodeAt(startLoc);\n    let {\n      consequent,\n      failed\n    } = this.tryParseConditionalConsequent();\n    let [valid, invalid] = this.getArrowLikeExpressions(consequent);\n    if (failed || invalid.length > 0) {\n      const noArrowAt = [...originalNoArrowAt];\n      if (invalid.length > 0) {\n        this.state = state;\n        this.state.noArrowAt = noArrowAt;\n        for (let i = 0; i < invalid.length; i++) {\n          noArrowAt.push(invalid[i].start);\n        }\n        ({\n          consequent,\n          failed\n        } = this.tryParseConditionalConsequent());\n        [valid, invalid] = this.getArrowLikeExpressions(consequent);\n      }\n      if (failed && valid.length > 1) {\n        this.raise(FlowErrors.AmbiguousConditionalArrow, state.startLoc);\n      }\n      if (failed && valid.length === 1) {\n        this.state = state;\n        noArrowAt.push(valid[0].start);\n        this.state.noArrowAt = noArrowAt;\n        ({\n          consequent,\n          failed\n        } = this.tryParseConditionalConsequent());\n      }\n    }\n    this.getArrowLikeExpressions(consequent, true);\n    this.state.noArrowAt = originalNoArrowAt;\n    this.expect(14);\n    node.test = expr;\n    node.consequent = consequent;\n    node.alternate = this.forwardNoArrowParamsConversionAt(node, () => this.parseMaybeAssign(undefined, undefined));\n    return this.finishNode(node, \"ConditionalExpression\");\n  }\n  tryParseConditionalConsequent() {\n    this.state.noArrowParamsConversionAt.push(this.state.start);\n    const consequent = this.parseMaybeAssignAllowIn();\n    const failed = !this.match(14);\n    this.state.noArrowParamsConversionAt.pop();\n    return {\n      consequent,\n      failed\n    };\n  }\n  getArrowLikeExpressions(node, disallowInvalid) {\n    const stack = [node];\n    const arrows = [];\n    while (stack.length !== 0) {\n      const node = stack.pop();\n      if (node.type === \"ArrowFunctionExpression\" && node.body.type !== \"BlockStatement\") {\n        if (node.typeParameters || !node.returnType) {\n          this.finishArrowValidation(node);\n        } else {\n          arrows.push(node);\n        }\n        stack.push(node.body);\n      } else if (node.type === \"ConditionalExpression\") {\n        stack.push(node.consequent);\n        stack.push(node.alternate);\n      }\n    }\n    if (disallowInvalid) {\n      arrows.forEach(node => this.finishArrowValidation(node));\n      return [arrows, []];\n    }\n    return partition(arrows, node => node.params.every(param => this.isAssignable(param, true)));\n  }\n  finishArrowValidation(node) {\n    var _node$extra;\n    this.toAssignableList(node.params, (_node$extra = node.extra) == null ? void 0 : _node$extra.trailingCommaLoc, false);\n    this.scope.enter(514 | 4);\n    super.checkParams(node, false, true);\n    this.scope.exit();\n  }\n  forwardNoArrowParamsConversionAt(node, parse) {\n    let result;\n    if (this.state.noArrowParamsConversionAt.includes(this.offsetToSourcePos(node.start))) {\n      this.state.noArrowParamsConversionAt.push(this.state.start);\n      result = parse();\n      this.state.noArrowParamsConversionAt.pop();\n    } else {\n      result = parse();\n    }\n    return result;\n  }\n  parseParenItem(node, startLoc) {\n    const newNode = super.parseParenItem(node, startLoc);\n    if (this.eat(17)) {\n      newNode.optional = true;\n      this.resetEndLocation(node);\n    }\n    if (this.match(14)) {\n      const typeCastNode = this.startNodeAt(startLoc);\n      typeCastNode.expression = newNode;\n      typeCastNode.typeAnnotation = this.flowParseTypeAnnotation();\n      return this.finishNode(typeCastNode, \"TypeCastExpression\");\n    }\n    return newNode;\n  }\n  assertModuleNodeAllowed(node) {\n    if (node.type === \"ImportDeclaration\" && (node.importKind === \"type\" || node.importKind === \"typeof\") || node.type === \"ExportNamedDeclaration\" && node.exportKind === \"type\" || node.type === \"ExportAllDeclaration\" && node.exportKind === \"type\") {\n      return;\n    }\n    super.assertModuleNodeAllowed(node);\n  }\n  parseExportDeclaration(node) {\n    if (this.isContextual(130)) {\n      node.exportKind = \"type\";\n      const declarationNode = this.startNode();\n      this.next();\n      if (this.match(5)) {\n        node.specifiers = this.parseExportSpecifiers(true);\n        super.parseExportFrom(node);\n        return null;\n      } else {\n        return this.flowParseTypeAlias(declarationNode);\n      }\n    } else if (this.isContextual(131)) {\n      node.exportKind = \"type\";\n      const declarationNode = this.startNode();\n      this.next();\n      return this.flowParseOpaqueType(declarationNode, false);\n    } else if (this.isContextual(129)) {\n      node.exportKind = \"type\";\n      const declarationNode = this.startNode();\n      this.next();\n      return this.flowParseInterface(declarationNode);\n    } else if (this.isContextual(126)) {\n      node.exportKind = \"value\";\n      const declarationNode = this.startNode();\n      this.next();\n      return this.flowParseEnumDeclaration(declarationNode);\n    } else {\n      return super.parseExportDeclaration(node);\n    }\n  }\n  eatExportStar(node) {\n    if (super.eatExportStar(node)) return true;\n    if (this.isContextual(130) && this.lookahead().type === 55) {\n      node.exportKind = \"type\";\n      this.next();\n      this.next();\n      return true;\n    }\n    return false;\n  }\n  maybeParseExportNamespaceSpecifier(node) {\n    const {\n      startLoc\n    } = this.state;\n    const hasNamespace = super.maybeParseExportNamespaceSpecifier(node);\n    if (hasNamespace && node.exportKind === \"type\") {\n      this.unexpected(startLoc);\n    }\n    return hasNamespace;\n  }\n  parseClassId(node, isStatement, optionalId) {\n    super.parseClassId(node, isStatement, optionalId);\n    if (this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    }\n  }\n  parseClassMember(classBody, member, state) {\n    const {\n      startLoc\n    } = this.state;\n    if (this.isContextual(125)) {\n      if (super.parseClassMemberFromModifier(classBody, member)) {\n        return;\n      }\n      member.declare = true;\n    }\n    super.parseClassMember(classBody, member, state);\n    if (member.declare) {\n      if (member.type !== \"ClassProperty\" && member.type !== \"ClassPrivateProperty\" && member.type !== \"PropertyDefinition\") {\n        this.raise(FlowErrors.DeclareClassElement, startLoc);\n      } else if (member.value) {\n        this.raise(FlowErrors.DeclareClassFieldInitializer, member.value);\n      }\n    }\n  }\n  isIterator(word) {\n    return word === \"iterator\" || word === \"asyncIterator\";\n  }\n  readIterator() {\n    const word = super.readWord1();\n    const fullWord = \"@@\" + word;\n    if (!this.isIterator(word) || !this.state.inType) {\n      this.raise(Errors.InvalidIdentifier, this.state.curPosition(), {\n        identifierName: fullWord\n      });\n    }\n    this.finishToken(132, fullWord);\n  }\n  getTokenFromCode(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (code === 123 && next === 124) {\n      this.finishOp(6, 2);\n    } else if (this.state.inType && (code === 62 || code === 60)) {\n      this.finishOp(code === 62 ? 48 : 47, 1);\n    } else if (this.state.inType && code === 63) {\n      if (next === 46) {\n        this.finishOp(18, 2);\n      } else {\n        this.finishOp(17, 1);\n      }\n    } else if (isIteratorStart(code, next, this.input.charCodeAt(this.state.pos + 2))) {\n      this.state.pos += 2;\n      this.readIterator();\n    } else {\n      super.getTokenFromCode(code);\n    }\n  }\n  isAssignable(node, isBinding) {\n    if (node.type === \"TypeCastExpression\") {\n      return this.isAssignable(node.expression, isBinding);\n    } else {\n      return super.isAssignable(node, isBinding);\n    }\n  }\n  toAssignable(node, isLHS = false) {\n    if (!isLHS && node.type === \"AssignmentExpression\" && node.left.type === \"TypeCastExpression\") {\n      node.left = this.typeCastToParameter(node.left);\n    }\n    super.toAssignable(node, isLHS);\n  }\n  toAssignableList(exprList, trailingCommaLoc, isLHS) {\n    for (let i = 0; i < exprList.length; i++) {\n      const expr = exprList[i];\n      if ((expr == null ? void 0 : expr.type) === \"TypeCastExpression\") {\n        exprList[i] = this.typeCastToParameter(expr);\n      }\n    }\n    super.toAssignableList(exprList, trailingCommaLoc, isLHS);\n  }\n  toReferencedList(exprList, isParenthesizedExpr) {\n    for (let i = 0; i < exprList.length; i++) {\n      var _expr$extra;\n      const expr = exprList[i];\n      if (expr && expr.type === \"TypeCastExpression\" && !((_expr$extra = expr.extra) != null && _expr$extra.parenthesized) && (exprList.length > 1 || !isParenthesizedExpr)) {\n        this.raise(FlowErrors.TypeCastInPattern, expr.typeAnnotation);\n      }\n    }\n    return exprList;\n  }\n  parseArrayLike(close, isTuple, refExpressionErrors) {\n    const node = super.parseArrayLike(close, isTuple, refExpressionErrors);\n    if (refExpressionErrors != null && !this.state.maybeInArrowParameters) {\n      this.toReferencedList(node.elements);\n    }\n    return node;\n  }\n  isValidLVal(type, disallowCallExpression, isParenthesized, binding) {\n    return type === \"TypeCastExpression\" || super.isValidLVal(type, disallowCallExpression, isParenthesized, binding);\n  }\n  parseClassProperty(node) {\n    if (this.match(14)) {\n      node.typeAnnotation = this.flowParseTypeAnnotation();\n    }\n    return super.parseClassProperty(node);\n  }\n  parseClassPrivateProperty(node) {\n    if (this.match(14)) {\n      node.typeAnnotation = this.flowParseTypeAnnotation();\n    }\n    return super.parseClassPrivateProperty(node);\n  }\n  isClassMethod() {\n    return this.match(47) || super.isClassMethod();\n  }\n  isClassProperty() {\n    return this.match(14) || super.isClassProperty();\n  }\n  isNonstaticConstructor(method) {\n    return !this.match(14) && super.isNonstaticConstructor(method);\n  }\n  pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) {\n    if (method.variance) {\n      this.unexpected(method.variance.loc.start);\n    }\n    delete method.variance;\n    if (this.match(47)) {\n      method.typeParameters = this.flowParseTypeParameterDeclaration();\n    }\n    super.pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper);\n    if (method.params && isConstructor) {\n      const params = method.params;\n      if (params.length > 0 && this.isThisParam(params[0])) {\n        this.raise(FlowErrors.ThisParamBannedInConstructor, method);\n      }\n    } else if (method.type === \"MethodDefinition\" && isConstructor && method.value.params) {\n      const params = method.value.params;\n      if (params.length > 0 && this.isThisParam(params[0])) {\n        this.raise(FlowErrors.ThisParamBannedInConstructor, method);\n      }\n    }\n  }\n  pushClassPrivateMethod(classBody, method, isGenerator, isAsync) {\n    if (method.variance) {\n      this.unexpected(method.variance.loc.start);\n    }\n    delete method.variance;\n    if (this.match(47)) {\n      method.typeParameters = this.flowParseTypeParameterDeclaration();\n    }\n    super.pushClassPrivateMethod(classBody, method, isGenerator, isAsync);\n  }\n  parseClassSuper(node) {\n    super.parseClassSuper(node);\n    if (node.superClass && (this.match(47) || this.match(51))) {\n      {\n        node.superTypeParameters = this.flowParseTypeParameterInstantiationInExpression();\n      }\n    }\n    if (this.isContextual(113)) {\n      this.next();\n      const implemented = node.implements = [];\n      do {\n        const node = this.startNode();\n        node.id = this.flowParseRestrictedIdentifier(true);\n        if (this.match(47)) {\n          node.typeParameters = this.flowParseTypeParameterInstantiation();\n        } else {\n          node.typeParameters = null;\n        }\n        implemented.push(this.finishNode(node, \"ClassImplements\"));\n      } while (this.eat(12));\n    }\n  }\n  checkGetterSetterParams(method) {\n    super.checkGetterSetterParams(method);\n    const params = this.getObjectOrClassMethodParams(method);\n    if (params.length > 0) {\n      const param = params[0];\n      if (this.isThisParam(param) && method.kind === \"get\") {\n        this.raise(FlowErrors.GetterMayNotHaveThisParam, param);\n      } else if (this.isThisParam(param)) {\n        this.raise(FlowErrors.SetterMayNotHaveThisParam, param);\n      }\n    }\n  }\n  parsePropertyNamePrefixOperator(node) {\n    node.variance = this.flowParseVariance();\n  }\n  parseObjPropValue(prop, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors) {\n    if (prop.variance) {\n      this.unexpected(prop.variance.loc.start);\n    }\n    delete prop.variance;\n    let typeParameters;\n    if (this.match(47) && !isAccessor) {\n      typeParameters = this.flowParseTypeParameterDeclaration();\n      if (!this.match(10)) this.unexpected();\n    }\n    const result = super.parseObjPropValue(prop, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors);\n    if (typeParameters) {\n      (result.value || result).typeParameters = typeParameters;\n    }\n    return result;\n  }\n  parseFunctionParamType(param) {\n    if (this.eat(17)) {\n      if (param.type !== \"Identifier\") {\n        this.raise(FlowErrors.PatternIsOptional, param);\n      }\n      if (this.isThisParam(param)) {\n        this.raise(FlowErrors.ThisParamMayNotBeOptional, param);\n      }\n      param.optional = true;\n    }\n    if (this.match(14)) {\n      param.typeAnnotation = this.flowParseTypeAnnotation();\n    } else if (this.isThisParam(param)) {\n      this.raise(FlowErrors.ThisParamAnnotationRequired, param);\n    }\n    if (this.match(29) && this.isThisParam(param)) {\n      this.raise(FlowErrors.ThisParamNoDefault, param);\n    }\n    this.resetEndLocation(param);\n    return param;\n  }\n  parseMaybeDefault(startLoc, left) {\n    const node = super.parseMaybeDefault(startLoc, left);\n    if (node.type === \"AssignmentPattern\" && node.typeAnnotation && node.right.start < node.typeAnnotation.start) {\n      this.raise(FlowErrors.TypeBeforeInitializer, node.typeAnnotation);\n    }\n    return node;\n  }\n  checkImportReflection(node) {\n    super.checkImportReflection(node);\n    if (node.module && node.importKind !== \"value\") {\n      this.raise(FlowErrors.ImportReflectionHasImportType, node.specifiers[0].loc.start);\n    }\n  }\n  parseImportSpecifierLocal(node, specifier, type) {\n    specifier.local = hasTypeImportKind(node) ? this.flowParseRestrictedIdentifier(true, true) : this.parseIdentifier();\n    node.specifiers.push(this.finishImportSpecifier(specifier, type));\n  }\n  isPotentialImportPhase(isExport) {\n    if (super.isPotentialImportPhase(isExport)) return true;\n    if (this.isContextual(130)) {\n      if (!isExport) return true;\n      const ch = this.lookaheadCharCode();\n      return ch === 123 || ch === 42;\n    }\n    return !isExport && this.isContextual(87);\n  }\n  applyImportPhase(node, isExport, phase, loc) {\n    super.applyImportPhase(node, isExport, phase, loc);\n    if (isExport) {\n      if (!phase && this.match(65)) {\n        return;\n      }\n      node.exportKind = phase === \"type\" ? phase : \"value\";\n    } else {\n      if (phase === \"type\" && this.match(55)) this.unexpected();\n      node.importKind = phase === \"type\" || phase === \"typeof\" ? phase : \"value\";\n    }\n  }\n  parseImportSpecifier(specifier, importedIsString, isInTypeOnlyImport, isMaybeTypeOnly, bindingType) {\n    const firstIdent = specifier.imported;\n    let specifierTypeKind = null;\n    if (firstIdent.type === \"Identifier\") {\n      if (firstIdent.name === \"type\") {\n        specifierTypeKind = \"type\";\n      } else if (firstIdent.name === \"typeof\") {\n        specifierTypeKind = \"typeof\";\n      }\n    }\n    let isBinding = false;\n    if (this.isContextual(93) && !this.isLookaheadContextual(\"as\")) {\n      const as_ident = this.parseIdentifier(true);\n      if (specifierTypeKind !== null && !tokenIsKeywordOrIdentifier(this.state.type)) {\n        specifier.imported = as_ident;\n        specifier.importKind = specifierTypeKind;\n        specifier.local = this.cloneIdentifier(as_ident);\n      } else {\n        specifier.imported = firstIdent;\n        specifier.importKind = null;\n        specifier.local = this.parseIdentifier();\n      }\n    } else {\n      if (specifierTypeKind !== null && tokenIsKeywordOrIdentifier(this.state.type)) {\n        specifier.imported = this.parseIdentifier(true);\n        specifier.importKind = specifierTypeKind;\n      } else {\n        if (importedIsString) {\n          throw this.raise(Errors.ImportBindingIsString, specifier, {\n            importName: firstIdent.value\n          });\n        }\n        specifier.imported = firstIdent;\n        specifier.importKind = null;\n      }\n      if (this.eatContextual(93)) {\n        specifier.local = this.parseIdentifier();\n      } else {\n        isBinding = true;\n        specifier.local = this.cloneIdentifier(specifier.imported);\n      }\n    }\n    const specifierIsTypeImport = hasTypeImportKind(specifier);\n    if (isInTypeOnlyImport && specifierIsTypeImport) {\n      this.raise(FlowErrors.ImportTypeShorthandOnlyInPureImport, specifier);\n    }\n    if (isInTypeOnlyImport || specifierIsTypeImport) {\n      this.checkReservedType(specifier.local.name, specifier.local.loc.start, true);\n    }\n    if (isBinding && !isInTypeOnlyImport && !specifierIsTypeImport) {\n      this.checkReservedWord(specifier.local.name, specifier.loc.start, true, true);\n    }\n    return this.finishImportSpecifier(specifier, \"ImportSpecifier\");\n  }\n  parseBindingAtom() {\n    switch (this.state.type) {\n      case 78:\n        return this.parseIdentifier(true);\n      default:\n        return super.parseBindingAtom();\n    }\n  }\n  parseFunctionParams(node, isConstructor) {\n    const kind = node.kind;\n    if (kind !== \"get\" && kind !== \"set\" && this.match(47)) {\n      node.typeParameters = this.flowParseTypeParameterDeclaration();\n    }\n    super.parseFunctionParams(node, isConstructor);\n  }\n  parseVarId(decl, kind) {\n    super.parseVarId(decl, kind);\n    if (this.match(14)) {\n      decl.id.typeAnnotation = this.flowParseTypeAnnotation();\n      this.resetEndLocation(decl.id);\n    }\n  }\n  parseAsyncArrowFromCallExpression(node, call) {\n    if (this.match(14)) {\n      const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n      this.state.noAnonFunctionType = true;\n      node.returnType = this.flowParseTypeAnnotation();\n      this.state.noAnonFunctionType = oldNoAnonFunctionType;\n    }\n    return super.parseAsyncArrowFromCallExpression(node, call);\n  }\n  shouldParseAsyncArrow() {\n    return this.match(14) || super.shouldParseAsyncArrow();\n  }\n  parseMaybeAssign(refExpressionErrors, afterLeftParse) {\n    var _jsx;\n    let state = null;\n    let jsx;\n    if (this.hasPlugin(\"jsx\") && (this.match(143) || this.match(47))) {\n      state = this.state.clone();\n      jsx = this.tryParse(() => super.parseMaybeAssign(refExpressionErrors, afterLeftParse), state);\n      if (!jsx.error) return jsx.node;\n      const {\n        context\n      } = this.state;\n      const currentContext = context[context.length - 1];\n      if (currentContext === types.j_oTag || currentContext === types.j_expr) {\n        context.pop();\n      }\n    }\n    if ((_jsx = jsx) != null && _jsx.error || this.match(47)) {\n      var _jsx2, _jsx3;\n      state = state || this.state.clone();\n      let typeParameters;\n      const arrow = this.tryParse(abort => {\n        var _arrowExpression$extr;\n        typeParameters = this.flowParseTypeParameterDeclaration();\n        const arrowExpression = this.forwardNoArrowParamsConversionAt(typeParameters, () => {\n          const result = super.parseMaybeAssign(refExpressionErrors, afterLeftParse);\n          this.resetStartLocationFromNode(result, typeParameters);\n          return result;\n        });\n        if ((_arrowExpression$extr = arrowExpression.extra) != null && _arrowExpression$extr.parenthesized) abort();\n        const expr = this.maybeUnwrapTypeCastExpression(arrowExpression);\n        if (expr.type !== \"ArrowFunctionExpression\") abort();\n        expr.typeParameters = typeParameters;\n        this.resetStartLocationFromNode(expr, typeParameters);\n        return arrowExpression;\n      }, state);\n      let arrowExpression = null;\n      if (arrow.node && this.maybeUnwrapTypeCastExpression(arrow.node).type === \"ArrowFunctionExpression\") {\n        if (!arrow.error && !arrow.aborted) {\n          if (arrow.node.async) {\n            this.raise(FlowErrors.UnexpectedTypeParameterBeforeAsyncArrowFunction, typeParameters);\n          }\n          return arrow.node;\n        }\n        arrowExpression = arrow.node;\n      }\n      if ((_jsx2 = jsx) != null && _jsx2.node) {\n        this.state = jsx.failState;\n        return jsx.node;\n      }\n      if (arrowExpression) {\n        this.state = arrow.failState;\n        return arrowExpression;\n      }\n      if ((_jsx3 = jsx) != null && _jsx3.thrown) throw jsx.error;\n      if (arrow.thrown) throw arrow.error;\n      throw this.raise(FlowErrors.UnexpectedTokenAfterTypeParameter, typeParameters);\n    }\n    return super.parseMaybeAssign(refExpressionErrors, afterLeftParse);\n  }\n  parseArrow(node) {\n    if (this.match(14)) {\n      const result = this.tryParse(() => {\n        const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n        this.state.noAnonFunctionType = true;\n        const typeNode = this.startNode();\n        [typeNode.typeAnnotation, node.predicate] = this.flowParseTypeAndPredicateInitialiser();\n        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n        if (this.canInsertSemicolon()) this.unexpected();\n        if (!this.match(19)) this.unexpected();\n        return typeNode;\n      });\n      if (result.thrown) return null;\n      if (result.error) this.state = result.failState;\n      node.returnType = result.node.typeAnnotation ? this.finishNode(result.node, \"TypeAnnotation\") : null;\n    }\n    return super.parseArrow(node);\n  }\n  shouldParseArrow(params) {\n    return this.match(14) || super.shouldParseArrow(params);\n  }\n  setArrowFunctionParameters(node, params) {\n    if (this.state.noArrowParamsConversionAt.includes(this.offsetToSourcePos(node.start))) {\n      node.params = params;\n    } else {\n      super.setArrowFunctionParameters(node, params);\n    }\n  }\n  checkParams(node, allowDuplicates, isArrowFunction, strictModeChanged = true) {\n    if (isArrowFunction && this.state.noArrowParamsConversionAt.includes(this.offsetToSourcePos(node.start))) {\n      return;\n    }\n    for (let i = 0; i < node.params.length; i++) {\n      if (this.isThisParam(node.params[i]) && i > 0) {\n        this.raise(FlowErrors.ThisParamMustBeFirst, node.params[i]);\n      }\n    }\n    super.checkParams(node, allowDuplicates, isArrowFunction, strictModeChanged);\n  }\n  parseParenAndDistinguishExpression(canBeArrow) {\n    return super.parseParenAndDistinguishExpression(canBeArrow && !this.state.noArrowAt.includes(this.sourceToOffsetPos(this.state.start)));\n  }\n  parseSubscripts(base, startLoc, noCalls) {\n    if (base.type === \"Identifier\" && base.name === \"async\" && this.state.noArrowAt.includes(startLoc.index)) {\n      this.next();\n      const node = this.startNodeAt(startLoc);\n      node.callee = base;\n      node.arguments = super.parseCallExpressionArguments();\n      base = this.finishNode(node, \"CallExpression\");\n    } else if (base.type === \"Identifier\" && base.name === \"async\" && this.match(47)) {\n      const state = this.state.clone();\n      const arrow = this.tryParse(abort => this.parseAsyncArrowWithTypeParameters(startLoc) || abort(), state);\n      if (!arrow.error && !arrow.aborted) return arrow.node;\n      const result = this.tryParse(() => super.parseSubscripts(base, startLoc, noCalls), state);\n      if (result.node && !result.error) return result.node;\n      if (arrow.node) {\n        this.state = arrow.failState;\n        return arrow.node;\n      }\n      if (result.node) {\n        this.state = result.failState;\n        return result.node;\n      }\n      throw arrow.error || result.error;\n    }\n    return super.parseSubscripts(base, startLoc, noCalls);\n  }\n  parseSubscript(base, startLoc, noCalls, subscriptState) {\n    if (this.match(18) && this.isLookaheadToken_lt()) {\n      subscriptState.optionalChainMember = true;\n      if (noCalls) {\n        subscriptState.stop = true;\n        return base;\n      }\n      this.next();\n      const node = this.startNodeAt(startLoc);\n      node.callee = base;\n      node.typeArguments = this.flowParseTypeParameterInstantiationInExpression();\n      this.expect(10);\n      node.arguments = this.parseCallExpressionArguments();\n      node.optional = true;\n      return this.finishCallExpression(node, true);\n    } else if (!noCalls && this.shouldParseTypes() && (this.match(47) || this.match(51))) {\n      const node = this.startNodeAt(startLoc);\n      node.callee = base;\n      const result = this.tryParse(() => {\n        node.typeArguments = this.flowParseTypeParameterInstantiationCallOrNew();\n        this.expect(10);\n        node.arguments = super.parseCallExpressionArguments();\n        if (subscriptState.optionalChainMember) {\n          node.optional = false;\n        }\n        return this.finishCallExpression(node, subscriptState.optionalChainMember);\n      });\n      if (result.node) {\n        if (result.error) this.state = result.failState;\n        return result.node;\n      }\n    }\n    return super.parseSubscript(base, startLoc, noCalls, subscriptState);\n  }\n  parseNewCallee(node) {\n    super.parseNewCallee(node);\n    let targs = null;\n    if (this.shouldParseTypes() && this.match(47)) {\n      targs = this.tryParse(() => this.flowParseTypeParameterInstantiationCallOrNew()).node;\n    }\n    node.typeArguments = targs;\n  }\n  parseAsyncArrowWithTypeParameters(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    this.parseFunctionParams(node, false);\n    if (!this.parseArrow(node)) return;\n    return super.parseArrowExpression(node, undefined, true);\n  }\n  readToken_mult_modulo(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (code === 42 && next === 47 && this.state.hasFlowComment) {\n      this.state.hasFlowComment = false;\n      this.state.pos += 2;\n      this.nextToken();\n      return;\n    }\n    super.readToken_mult_modulo(code);\n  }\n  readToken_pipe_amp(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (code === 124 && next === 125) {\n      this.finishOp(9, 2);\n      return;\n    }\n    super.readToken_pipe_amp(code);\n  }\n  parseTopLevel(file, program) {\n    const fileNode = super.parseTopLevel(file, program);\n    if (this.state.hasFlowComment) {\n      this.raise(FlowErrors.UnterminatedFlowComment, this.state.curPosition());\n    }\n    return fileNode;\n  }\n  skipBlockComment() {\n    if (this.hasPlugin(\"flowComments\") && this.skipFlowComment()) {\n      if (this.state.hasFlowComment) {\n        throw this.raise(FlowErrors.NestedFlowComment, this.state.startLoc);\n      }\n      this.hasFlowCommentCompletion();\n      const commentSkip = this.skipFlowComment();\n      if (commentSkip) {\n        this.state.pos += commentSkip;\n        this.state.hasFlowComment = true;\n      }\n      return;\n    }\n    return super.skipBlockComment(this.state.hasFlowComment ? \"*-/\" : \"*/\");\n  }\n  skipFlowComment() {\n    const {\n      pos\n    } = this.state;\n    let shiftToFirstNonWhiteSpace = 2;\n    while ([32, 9].includes(this.input.charCodeAt(pos + shiftToFirstNonWhiteSpace))) {\n      shiftToFirstNonWhiteSpace++;\n    }\n    const ch2 = this.input.charCodeAt(shiftToFirstNonWhiteSpace + pos);\n    const ch3 = this.input.charCodeAt(shiftToFirstNonWhiteSpace + pos + 1);\n    if (ch2 === 58 && ch3 === 58) {\n      return shiftToFirstNonWhiteSpace + 2;\n    }\n    if (this.input.slice(shiftToFirstNonWhiteSpace + pos, shiftToFirstNonWhiteSpace + pos + 12) === \"flow-include\") {\n      return shiftToFirstNonWhiteSpace + 12;\n    }\n    if (ch2 === 58 && ch3 !== 58) {\n      return shiftToFirstNonWhiteSpace;\n    }\n    return false;\n  }\n  hasFlowCommentCompletion() {\n    const end = this.input.indexOf(\"*/\", this.state.pos);\n    if (end === -1) {\n      throw this.raise(Errors.UnterminatedComment, this.state.curPosition());\n    }\n  }\n  flowEnumErrorBooleanMemberNotInitialized(loc, {\n    enumName,\n    memberName\n  }) {\n    this.raise(FlowErrors.EnumBooleanMemberNotInitialized, loc, {\n      memberName,\n      enumName\n    });\n  }\n  flowEnumErrorInvalidMemberInitializer(loc, enumContext) {\n    return this.raise(!enumContext.explicitType ? FlowErrors.EnumInvalidMemberInitializerUnknownType : enumContext.explicitType === \"symbol\" ? FlowErrors.EnumInvalidMemberInitializerSymbolType : FlowErrors.EnumInvalidMemberInitializerPrimaryType, loc, enumContext);\n  }\n  flowEnumErrorNumberMemberNotInitialized(loc, details) {\n    this.raise(FlowErrors.EnumNumberMemberNotInitialized, loc, details);\n  }\n  flowEnumErrorStringMemberInconsistentlyInitialized(node, details) {\n    this.raise(FlowErrors.EnumStringMemberInconsistentlyInitialized, node, details);\n  }\n  flowEnumMemberInit() {\n    const startLoc = this.state.startLoc;\n    const endOfInit = () => this.match(12) || this.match(8);\n    switch (this.state.type) {\n      case 135:\n        {\n          const literal = this.parseNumericLiteral(this.state.value);\n          if (endOfInit()) {\n            return {\n              type: \"number\",\n              loc: literal.loc.start,\n              value: literal\n            };\n          }\n          return {\n            type: \"invalid\",\n            loc: startLoc\n          };\n        }\n      case 134:\n        {\n          const literal = this.parseStringLiteral(this.state.value);\n          if (endOfInit()) {\n            return {\n              type: \"string\",\n              loc: literal.loc.start,\n              value: literal\n            };\n          }\n          return {\n            type: \"invalid\",\n            loc: startLoc\n          };\n        }\n      case 85:\n      case 86:\n        {\n          const literal = this.parseBooleanLiteral(this.match(85));\n          if (endOfInit()) {\n            return {\n              type: \"boolean\",\n              loc: literal.loc.start,\n              value: literal\n            };\n          }\n          return {\n            type: \"invalid\",\n            loc: startLoc\n          };\n        }\n      default:\n        return {\n          type: \"invalid\",\n          loc: startLoc\n        };\n    }\n  }\n  flowEnumMemberRaw() {\n    const loc = this.state.startLoc;\n    const id = this.parseIdentifier(true);\n    const init = this.eat(29) ? this.flowEnumMemberInit() : {\n      type: \"none\",\n      loc\n    };\n    return {\n      id,\n      init\n    };\n  }\n  flowEnumCheckExplicitTypeMismatch(loc, context, expectedType) {\n    const {\n      explicitType\n    } = context;\n    if (explicitType === null) {\n      return;\n    }\n    if (explicitType !== expectedType) {\n      this.flowEnumErrorInvalidMemberInitializer(loc, context);\n    }\n  }\n  flowEnumMembers({\n    enumName,\n    explicitType\n  }) {\n    const seenNames = new Set();\n    const members = {\n      booleanMembers: [],\n      numberMembers: [],\n      stringMembers: [],\n      defaultedMembers: []\n    };\n    let hasUnknownMembers = false;\n    while (!this.match(8)) {\n      if (this.eat(21)) {\n        hasUnknownMembers = true;\n        break;\n      }\n      const memberNode = this.startNode();\n      const {\n        id,\n        init\n      } = this.flowEnumMemberRaw();\n      const memberName = id.name;\n      if (memberName === \"\") {\n        continue;\n      }\n      if (/^[a-z]/.test(memberName)) {\n        this.raise(FlowErrors.EnumInvalidMemberName, id, {\n          memberName,\n          suggestion: memberName[0].toUpperCase() + memberName.slice(1),\n          enumName\n        });\n      }\n      if (seenNames.has(memberName)) {\n        this.raise(FlowErrors.EnumDuplicateMemberName, id, {\n          memberName,\n          enumName\n        });\n      }\n      seenNames.add(memberName);\n      const context = {\n        enumName,\n        explicitType,\n        memberName\n      };\n      memberNode.id = id;\n      switch (init.type) {\n        case \"boolean\":\n          {\n            this.flowEnumCheckExplicitTypeMismatch(init.loc, context, \"boolean\");\n            memberNode.init = init.value;\n            members.booleanMembers.push(this.finishNode(memberNode, \"EnumBooleanMember\"));\n            break;\n          }\n        case \"number\":\n          {\n            this.flowEnumCheckExplicitTypeMismatch(init.loc, context, \"number\");\n            memberNode.init = init.value;\n            members.numberMembers.push(this.finishNode(memberNode, \"EnumNumberMember\"));\n            break;\n          }\n        case \"string\":\n          {\n            this.flowEnumCheckExplicitTypeMismatch(init.loc, context, \"string\");\n            memberNode.init = init.value;\n            members.stringMembers.push(this.finishNode(memberNode, \"EnumStringMember\"));\n            break;\n          }\n        case \"invalid\":\n          {\n            throw this.flowEnumErrorInvalidMemberInitializer(init.loc, context);\n          }\n        case \"none\":\n          {\n            switch (explicitType) {\n              case \"boolean\":\n                this.flowEnumErrorBooleanMemberNotInitialized(init.loc, context);\n                break;\n              case \"number\":\n                this.flowEnumErrorNumberMemberNotInitialized(init.loc, context);\n                break;\n              default:\n                members.defaultedMembers.push(this.finishNode(memberNode, \"EnumDefaultedMember\"));\n            }\n          }\n      }\n      if (!this.match(8)) {\n        this.expect(12);\n      }\n    }\n    return {\n      members,\n      hasUnknownMembers\n    };\n  }\n  flowEnumStringMembers(initializedMembers, defaultedMembers, {\n    enumName\n  }) {\n    if (initializedMembers.length === 0) {\n      return defaultedMembers;\n    } else if (defaultedMembers.length === 0) {\n      return initializedMembers;\n    } else if (defaultedMembers.length > initializedMembers.length) {\n      for (const member of initializedMembers) {\n        this.flowEnumErrorStringMemberInconsistentlyInitialized(member, {\n          enumName\n        });\n      }\n      return defaultedMembers;\n    } else {\n      for (const member of defaultedMembers) {\n        this.flowEnumErrorStringMemberInconsistentlyInitialized(member, {\n          enumName\n        });\n      }\n      return initializedMembers;\n    }\n  }\n  flowEnumParseExplicitType({\n    enumName\n  }) {\n    if (!this.eatContextual(102)) return null;\n    if (!tokenIsIdentifier(this.state.type)) {\n      throw this.raise(FlowErrors.EnumInvalidExplicitTypeUnknownSupplied, this.state.startLoc, {\n        enumName\n      });\n    }\n    const {\n      value\n    } = this.state;\n    this.next();\n    if (value !== \"boolean\" && value !== \"number\" && value !== \"string\" && value !== \"symbol\") {\n      this.raise(FlowErrors.EnumInvalidExplicitType, this.state.startLoc, {\n        enumName,\n        invalidEnumType: value\n      });\n    }\n    return value;\n  }\n  flowEnumBody(node, id) {\n    const enumName = id.name;\n    const nameLoc = id.loc.start;\n    const explicitType = this.flowEnumParseExplicitType({\n      enumName\n    });\n    this.expect(5);\n    const {\n      members,\n      hasUnknownMembers\n    } = this.flowEnumMembers({\n      enumName,\n      explicitType\n    });\n    node.hasUnknownMembers = hasUnknownMembers;\n    switch (explicitType) {\n      case \"boolean\":\n        node.explicitType = true;\n        node.members = members.booleanMembers;\n        this.expect(8);\n        return this.finishNode(node, \"EnumBooleanBody\");\n      case \"number\":\n        node.explicitType = true;\n        node.members = members.numberMembers;\n        this.expect(8);\n        return this.finishNode(node, \"EnumNumberBody\");\n      case \"string\":\n        node.explicitType = true;\n        node.members = this.flowEnumStringMembers(members.stringMembers, members.defaultedMembers, {\n          enumName\n        });\n        this.expect(8);\n        return this.finishNode(node, \"EnumStringBody\");\n      case \"symbol\":\n        node.members = members.defaultedMembers;\n        this.expect(8);\n        return this.finishNode(node, \"EnumSymbolBody\");\n      default:\n        {\n          const empty = () => {\n            node.members = [];\n            this.expect(8);\n            return this.finishNode(node, \"EnumStringBody\");\n          };\n          node.explicitType = false;\n          const boolsLen = members.booleanMembers.length;\n          const numsLen = members.numberMembers.length;\n          const strsLen = members.stringMembers.length;\n          const defaultedLen = members.defaultedMembers.length;\n          if (!boolsLen && !numsLen && !strsLen && !defaultedLen) {\n            return empty();\n          } else if (!boolsLen && !numsLen) {\n            node.members = this.flowEnumStringMembers(members.stringMembers, members.defaultedMembers, {\n              enumName\n            });\n            this.expect(8);\n            return this.finishNode(node, \"EnumStringBody\");\n          } else if (!numsLen && !strsLen && boolsLen >= defaultedLen) {\n            for (const member of members.defaultedMembers) {\n              this.flowEnumErrorBooleanMemberNotInitialized(member.loc.start, {\n                enumName,\n                memberName: member.id.name\n              });\n            }\n            node.members = members.booleanMembers;\n            this.expect(8);\n            return this.finishNode(node, \"EnumBooleanBody\");\n          } else if (!boolsLen && !strsLen && numsLen >= defaultedLen) {\n            for (const member of members.defaultedMembers) {\n              this.flowEnumErrorNumberMemberNotInitialized(member.loc.start, {\n                enumName,\n                memberName: member.id.name\n              });\n            }\n            node.members = members.numberMembers;\n            this.expect(8);\n            return this.finishNode(node, \"EnumNumberBody\");\n          } else {\n            this.raise(FlowErrors.EnumInconsistentMemberValues, nameLoc, {\n              enumName\n            });\n            return empty();\n          }\n        }\n    }\n  }\n  flowParseEnumDeclaration(node) {\n    const id = this.parseIdentifier();\n    node.id = id;\n    node.body = this.flowEnumBody(this.startNode(), id);\n    return this.finishNode(node, \"EnumDeclaration\");\n  }\n  jsxParseOpeningElementAfterName(node) {\n    if (this.shouldParseTypes()) {\n      if (this.match(47) || this.match(51)) {\n        node.typeArguments = this.flowParseTypeParameterInstantiationInExpression();\n      }\n    }\n    return super.jsxParseOpeningElementAfterName(node);\n  }\n  isLookaheadToken_lt() {\n    const next = this.nextTokenStart();\n    if (this.input.charCodeAt(next) === 60) {\n      const afterNext = this.input.charCodeAt(next + 1);\n      return afterNext !== 60 && afterNext !== 61;\n    }\n    return false;\n  }\n  reScan_lt_gt() {\n    const {\n      type\n    } = this.state;\n    if (type === 47) {\n      this.state.pos -= 1;\n      this.readToken_lt();\n    } else if (type === 48) {\n      this.state.pos -= 1;\n      this.readToken_gt();\n    }\n  }\n  reScan_lt() {\n    const {\n      type\n    } = this.state;\n    if (type === 51) {\n      this.state.pos -= 2;\n      this.finishOp(47, 1);\n      return 47;\n    }\n    return type;\n  }\n  maybeUnwrapTypeCastExpression(node) {\n    return node.type === \"TypeCastExpression\" ? node.expression : node;\n  }\n};\nconst entities = {\n  __proto__: null,\n  quot: \"\\u0022\",\n  amp: \"&\",\n  apos: \"\\u0027\",\n  lt: \"<\",\n  gt: \">\",\n  nbsp: \"\\u00A0\",\n  iexcl: \"\\u00A1\",\n  cent: \"\\u00A2\",\n  pound: \"\\u00A3\",\n  curren: \"\\u00A4\",\n  yen: \"\\u00A5\",\n  brvbar: \"\\u00A6\",\n  sect: \"\\u00A7\",\n  uml: \"\\u00A8\",\n  copy: \"\\u00A9\",\n  ordf: \"\\u00AA\",\n  laquo: \"\\u00AB\",\n  not: \"\\u00AC\",\n  shy: \"\\u00AD\",\n  reg: \"\\u00AE\",\n  macr: \"\\u00AF\",\n  deg: \"\\u00B0\",\n  plusmn: \"\\u00B1\",\n  sup2: \"\\u00B2\",\n  sup3: \"\\u00B3\",\n  acute: \"\\u00B4\",\n  micro: \"\\u00B5\",\n  para: \"\\u00B6\",\n  middot: \"\\u00B7\",\n  cedil: \"\\u00B8\",\n  sup1: \"\\u00B9\",\n  ordm: \"\\u00BA\",\n  raquo: \"\\u00BB\",\n  frac14: \"\\u00BC\",\n  frac12: \"\\u00BD\",\n  frac34: \"\\u00BE\",\n  iquest: \"\\u00BF\",\n  Agrave: \"\\u00C0\",\n  Aacute: \"\\u00C1\",\n  Acirc: \"\\u00C2\",\n  Atilde: \"\\u00C3\",\n  Auml: \"\\u00C4\",\n  Aring: \"\\u00C5\",\n  AElig: \"\\u00C6\",\n  Ccedil: \"\\u00C7\",\n  Egrave: \"\\u00C8\",\n  Eacute: \"\\u00C9\",\n  Ecirc: \"\\u00CA\",\n  Euml: \"\\u00CB\",\n  Igrave: \"\\u00CC\",\n  Iacute: \"\\u00CD\",\n  Icirc: \"\\u00CE\",\n  Iuml: \"\\u00CF\",\n  ETH: \"\\u00D0\",\n  Ntilde: \"\\u00D1\",\n  Ograve: \"\\u00D2\",\n  Oacute: \"\\u00D3\",\n  Ocirc: \"\\u00D4\",\n  Otilde: \"\\u00D5\",\n  Ouml: \"\\u00D6\",\n  times: \"\\u00D7\",\n  Oslash: \"\\u00D8\",\n  Ugrave: \"\\u00D9\",\n  Uacute: \"\\u00DA\",\n  Ucirc: \"\\u00DB\",\n  Uuml: \"\\u00DC\",\n  Yacute: \"\\u00DD\",\n  THORN: \"\\u00DE\",\n  szlig: \"\\u00DF\",\n  agrave: \"\\u00E0\",\n  aacute: \"\\u00E1\",\n  acirc: \"\\u00E2\",\n  atilde: \"\\u00E3\",\n  auml: \"\\u00E4\",\n  aring: \"\\u00E5\",\n  aelig: \"\\u00E6\",\n  ccedil: \"\\u00E7\",\n  egrave: \"\\u00E8\",\n  eacute: \"\\u00E9\",\n  ecirc: \"\\u00EA\",\n  euml: \"\\u00EB\",\n  igrave: \"\\u00EC\",\n  iacute: \"\\u00ED\",\n  icirc: \"\\u00EE\",\n  iuml: \"\\u00EF\",\n  eth: \"\\u00F0\",\n  ntilde: \"\\u00F1\",\n  ograve: \"\\u00F2\",\n  oacute: \"\\u00F3\",\n  ocirc: \"\\u00F4\",\n  otilde: \"\\u00F5\",\n  ouml: \"\\u00F6\",\n  divide: \"\\u00F7\",\n  oslash: \"\\u00F8\",\n  ugrave: \"\\u00F9\",\n  uacute: \"\\u00FA\",\n  ucirc: \"\\u00FB\",\n  uuml: \"\\u00FC\",\n  yacute: \"\\u00FD\",\n  thorn: \"\\u00FE\",\n  yuml: \"\\u00FF\",\n  OElig: \"\\u0152\",\n  oelig: \"\\u0153\",\n  Scaron: \"\\u0160\",\n  scaron: \"\\u0161\",\n  Yuml: \"\\u0178\",\n  fnof: \"\\u0192\",\n  circ: \"\\u02C6\",\n  tilde: \"\\u02DC\",\n  Alpha: \"\\u0391\",\n  Beta: \"\\u0392\",\n  Gamma: \"\\u0393\",\n  Delta: \"\\u0394\",\n  Epsilon: \"\\u0395\",\n  Zeta: \"\\u0396\",\n  Eta: \"\\u0397\",\n  Theta: \"\\u0398\",\n  Iota: \"\\u0399\",\n  Kappa: \"\\u039A\",\n  Lambda: \"\\u039B\",\n  Mu: \"\\u039C\",\n  Nu: \"\\u039D\",\n  Xi: \"\\u039E\",\n  Omicron: \"\\u039F\",\n  Pi: \"\\u03A0\",\n  Rho: \"\\u03A1\",\n  Sigma: \"\\u03A3\",\n  Tau: \"\\u03A4\",\n  Upsilon: \"\\u03A5\",\n  Phi: \"\\u03A6\",\n  Chi: \"\\u03A7\",\n  Psi: \"\\u03A8\",\n  Omega: \"\\u03A9\",\n  alpha: \"\\u03B1\",\n  beta: \"\\u03B2\",\n  gamma: \"\\u03B3\",\n  delta: \"\\u03B4\",\n  epsilon: \"\\u03B5\",\n  zeta: \"\\u03B6\",\n  eta: \"\\u03B7\",\n  theta: \"\\u03B8\",\n  iota: \"\\u03B9\",\n  kappa: \"\\u03BA\",\n  lambda: \"\\u03BB\",\n  mu: \"\\u03BC\",\n  nu: \"\\u03BD\",\n  xi: \"\\u03BE\",\n  omicron: \"\\u03BF\",\n  pi: \"\\u03C0\",\n  rho: \"\\u03C1\",\n  sigmaf: \"\\u03C2\",\n  sigma: \"\\u03C3\",\n  tau: \"\\u03C4\",\n  upsilon: \"\\u03C5\",\n  phi: \"\\u03C6\",\n  chi: \"\\u03C7\",\n  psi: \"\\u03C8\",\n  omega: \"\\u03C9\",\n  thetasym: \"\\u03D1\",\n  upsih: \"\\u03D2\",\n  piv: \"\\u03D6\",\n  ensp: \"\\u2002\",\n  emsp: \"\\u2003\",\n  thinsp: \"\\u2009\",\n  zwnj: \"\\u200C\",\n  zwj: \"\\u200D\",\n  lrm: \"\\u200E\",\n  rlm: \"\\u200F\",\n  ndash: \"\\u2013\",\n  mdash: \"\\u2014\",\n  lsquo: \"\\u2018\",\n  rsquo: \"\\u2019\",\n  sbquo: \"\\u201A\",\n  ldquo: \"\\u201C\",\n  rdquo: \"\\u201D\",\n  bdquo: \"\\u201E\",\n  dagger: \"\\u2020\",\n  Dagger: \"\\u2021\",\n  bull: \"\\u2022\",\n  hellip: \"\\u2026\",\n  permil: \"\\u2030\",\n  prime: \"\\u2032\",\n  Prime: \"\\u2033\",\n  lsaquo: \"\\u2039\",\n  rsaquo: \"\\u203A\",\n  oline: \"\\u203E\",\n  frasl: \"\\u2044\",\n  euro: \"\\u20AC\",\n  image: \"\\u2111\",\n  weierp: \"\\u2118\",\n  real: \"\\u211C\",\n  trade: \"\\u2122\",\n  alefsym: \"\\u2135\",\n  larr: \"\\u2190\",\n  uarr: \"\\u2191\",\n  rarr: \"\\u2192\",\n  darr: \"\\u2193\",\n  harr: \"\\u2194\",\n  crarr: \"\\u21B5\",\n  lArr: \"\\u21D0\",\n  uArr: \"\\u21D1\",\n  rArr: \"\\u21D2\",\n  dArr: \"\\u21D3\",\n  hArr: \"\\u21D4\",\n  forall: \"\\u2200\",\n  part: \"\\u2202\",\n  exist: \"\\u2203\",\n  empty: \"\\u2205\",\n  nabla: \"\\u2207\",\n  isin: \"\\u2208\",\n  notin: \"\\u2209\",\n  ni: \"\\u220B\",\n  prod: \"\\u220F\",\n  sum: \"\\u2211\",\n  minus: \"\\u2212\",\n  lowast: \"\\u2217\",\n  radic: \"\\u221A\",\n  prop: \"\\u221D\",\n  infin: \"\\u221E\",\n  ang: \"\\u2220\",\n  and: \"\\u2227\",\n  or: \"\\u2228\",\n  cap: \"\\u2229\",\n  cup: \"\\u222A\",\n  int: \"\\u222B\",\n  there4: \"\\u2234\",\n  sim: \"\\u223C\",\n  cong: \"\\u2245\",\n  asymp: \"\\u2248\",\n  ne: \"\\u2260\",\n  equiv: \"\\u2261\",\n  le: \"\\u2264\",\n  ge: \"\\u2265\",\n  sub: \"\\u2282\",\n  sup: \"\\u2283\",\n  nsub: \"\\u2284\",\n  sube: \"\\u2286\",\n  supe: \"\\u2287\",\n  oplus: \"\\u2295\",\n  otimes: \"\\u2297\",\n  perp: \"\\u22A5\",\n  sdot: \"\\u22C5\",\n  lceil: \"\\u2308\",\n  rceil: \"\\u2309\",\n  lfloor: \"\\u230A\",\n  rfloor: \"\\u230B\",\n  lang: \"\\u2329\",\n  rang: \"\\u232A\",\n  loz: \"\\u25CA\",\n  spades: \"\\u2660\",\n  clubs: \"\\u2663\",\n  hearts: \"\\u2665\",\n  diams: \"\\u2666\"\n};\nconst lineBreak = /\\r\\n|[\\r\\n\\u2028\\u2029]/;\nconst lineBreakG = new RegExp(lineBreak.source, \"g\");\nfunction isNewLine(code) {\n  switch (code) {\n    case 10:\n    case 13:\n    case 8232:\n    case 8233:\n      return true;\n    default:\n      return false;\n  }\n}\nfunction hasNewLine(input, start, end) {\n  for (let i = start; i < end; i++) {\n    if (isNewLine(input.charCodeAt(i))) {\n      return true;\n    }\n  }\n  return false;\n}\nconst skipWhiteSpace = /(?:\\s|\\/\\/.*|\\/\\*[^]*?\\*\\/)*/g;\nconst skipWhiteSpaceInLine = /(?:[^\\S\\n\\r\\u2028\\u2029]|\\/\\/.*|\\/\\*.*?\\*\\/)*/g;\nfunction isWhitespace(code) {\n  switch (code) {\n    case 0x0009:\n    case 0x000b:\n    case 0x000c:\n    case 32:\n    case 160:\n    case 5760:\n    case 0x2000:\n    case 0x2001:\n    case 0x2002:\n    case 0x2003:\n    case 0x2004:\n    case 0x2005:\n    case 0x2006:\n    case 0x2007:\n    case 0x2008:\n    case 0x2009:\n    case 0x200a:\n    case 0x202f:\n    case 0x205f:\n    case 0x3000:\n    case 0xfeff:\n      return true;\n    default:\n      return false;\n  }\n}\nconst JsxErrors = ParseErrorEnum`jsx`({\n  AttributeIsEmpty: \"JSX attributes must only be assigned a non-empty expression.\",\n  MissingClosingTagElement: ({\n    openingTagName\n  }) => `Expected corresponding JSX closing tag for <${openingTagName}>.`,\n  MissingClosingTagFragment: \"Expected corresponding JSX closing tag for <>.\",\n  UnexpectedSequenceExpression: \"Sequence expressions cannot be directly nested inside JSX. Did you mean to wrap it in parentheses (...)?\",\n  UnexpectedToken: ({\n    unexpected,\n    HTMLEntity\n  }) => `Unexpected token \\`${unexpected}\\`. Did you mean \\`${HTMLEntity}\\` or \\`{'${unexpected}'}\\`?`,\n  UnsupportedJsxValue: \"JSX value should be either an expression or a quoted JSX text.\",\n  UnterminatedJsxContent: \"Unterminated JSX contents.\",\n  UnwrappedAdjacentJSXElements: \"Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?\"\n});\nfunction isFragment(object) {\n  return object ? object.type === \"JSXOpeningFragment\" || object.type === \"JSXClosingFragment\" : false;\n}\nfunction getQualifiedJSXName(object) {\n  if (object.type === \"JSXIdentifier\") {\n    return object.name;\n  }\n  if (object.type === \"JSXNamespacedName\") {\n    return object.namespace.name + \":\" + object.name.name;\n  }\n  if (object.type === \"JSXMemberExpression\") {\n    return getQualifiedJSXName(object.object) + \".\" + getQualifiedJSXName(object.property);\n  }\n  throw new Error(\"Node had unexpected type: \" + object.type);\n}\nvar jsx = superClass => class JSXParserMixin extends superClass {\n  jsxReadToken() {\n    let out = \"\";\n    let chunkStart = this.state.pos;\n    for (;;) {\n      if (this.state.pos >= this.length) {\n        throw this.raise(JsxErrors.UnterminatedJsxContent, this.state.startLoc);\n      }\n      const ch = this.input.charCodeAt(this.state.pos);\n      switch (ch) {\n        case 60:\n        case 123:\n          if (this.state.pos === this.state.start) {\n            if (ch === 60 && this.state.canStartJSXElement) {\n              ++this.state.pos;\n              this.finishToken(143);\n            } else {\n              super.getTokenFromCode(ch);\n            }\n            return;\n          }\n          out += this.input.slice(chunkStart, this.state.pos);\n          this.finishToken(142, out);\n          return;\n        case 38:\n          out += this.input.slice(chunkStart, this.state.pos);\n          out += this.jsxReadEntity();\n          chunkStart = this.state.pos;\n          break;\n        case 62:\n        case 125:\n        default:\n          if (isNewLine(ch)) {\n            out += this.input.slice(chunkStart, this.state.pos);\n            out += this.jsxReadNewLine(true);\n            chunkStart = this.state.pos;\n          } else {\n            ++this.state.pos;\n          }\n      }\n    }\n  }\n  jsxReadNewLine(normalizeCRLF) {\n    const ch = this.input.charCodeAt(this.state.pos);\n    let out;\n    ++this.state.pos;\n    if (ch === 13 && this.input.charCodeAt(this.state.pos) === 10) {\n      ++this.state.pos;\n      out = normalizeCRLF ? \"\\n\" : \"\\r\\n\";\n    } else {\n      out = String.fromCharCode(ch);\n    }\n    ++this.state.curLine;\n    this.state.lineStart = this.state.pos;\n    return out;\n  }\n  jsxReadString(quote) {\n    let out = \"\";\n    let chunkStart = ++this.state.pos;\n    for (;;) {\n      if (this.state.pos >= this.length) {\n        throw this.raise(Errors.UnterminatedString, this.state.startLoc);\n      }\n      const ch = this.input.charCodeAt(this.state.pos);\n      if (ch === quote) break;\n      if (ch === 38) {\n        out += this.input.slice(chunkStart, this.state.pos);\n        out += this.jsxReadEntity();\n        chunkStart = this.state.pos;\n      } else if (isNewLine(ch)) {\n        out += this.input.slice(chunkStart, this.state.pos);\n        out += this.jsxReadNewLine(false);\n        chunkStart = this.state.pos;\n      } else {\n        ++this.state.pos;\n      }\n    }\n    out += this.input.slice(chunkStart, this.state.pos++);\n    this.finishToken(134, out);\n  }\n  jsxReadEntity() {\n    const startPos = ++this.state.pos;\n    if (this.codePointAtPos(this.state.pos) === 35) {\n      ++this.state.pos;\n      let radix = 10;\n      if (this.codePointAtPos(this.state.pos) === 120) {\n        radix = 16;\n        ++this.state.pos;\n      }\n      const codePoint = this.readInt(radix, undefined, false, \"bail\");\n      if (codePoint !== null && this.codePointAtPos(this.state.pos) === 59) {\n        ++this.state.pos;\n        return String.fromCodePoint(codePoint);\n      }\n    } else {\n      let count = 0;\n      let semi = false;\n      while (count++ < 10 && this.state.pos < this.length && !(semi = this.codePointAtPos(this.state.pos) === 59)) {\n        ++this.state.pos;\n      }\n      if (semi) {\n        const desc = this.input.slice(startPos, this.state.pos);\n        const entity = entities[desc];\n        ++this.state.pos;\n        if (entity) {\n          return entity;\n        }\n      }\n    }\n    this.state.pos = startPos;\n    return \"&\";\n  }\n  jsxReadWord() {\n    let ch;\n    const start = this.state.pos;\n    do {\n      ch = this.input.charCodeAt(++this.state.pos);\n    } while (isIdentifierChar(ch) || ch === 45);\n    this.finishToken(141, this.input.slice(start, this.state.pos));\n  }\n  jsxParseIdentifier() {\n    const node = this.startNode();\n    if (this.match(141)) {\n      node.name = this.state.value;\n    } else if (tokenIsKeyword(this.state.type)) {\n      node.name = tokenLabelName(this.state.type);\n    } else {\n      this.unexpected();\n    }\n    this.next();\n    return this.finishNode(node, \"JSXIdentifier\");\n  }\n  jsxParseNamespacedName() {\n    const startLoc = this.state.startLoc;\n    const name = this.jsxParseIdentifier();\n    if (!this.eat(14)) return name;\n    const node = this.startNodeAt(startLoc);\n    node.namespace = name;\n    node.name = this.jsxParseIdentifier();\n    return this.finishNode(node, \"JSXNamespacedName\");\n  }\n  jsxParseElementName() {\n    const startLoc = this.state.startLoc;\n    let node = this.jsxParseNamespacedName();\n    if (node.type === \"JSXNamespacedName\") {\n      return node;\n    }\n    while (this.eat(16)) {\n      const newNode = this.startNodeAt(startLoc);\n      newNode.object = node;\n      newNode.property = this.jsxParseIdentifier();\n      node = this.finishNode(newNode, \"JSXMemberExpression\");\n    }\n    return node;\n  }\n  jsxParseAttributeValue() {\n    let node;\n    switch (this.state.type) {\n      case 5:\n        node = this.startNode();\n        this.setContext(types.brace);\n        this.next();\n        node = this.jsxParseExpressionContainer(node, types.j_oTag);\n        if (node.expression.type === \"JSXEmptyExpression\") {\n          this.raise(JsxErrors.AttributeIsEmpty, node);\n        }\n        return node;\n      case 143:\n      case 134:\n        return this.parseExprAtom();\n      default:\n        throw this.raise(JsxErrors.UnsupportedJsxValue, this.state.startLoc);\n    }\n  }\n  jsxParseEmptyExpression() {\n    const node = this.startNodeAt(this.state.lastTokEndLoc);\n    return this.finishNodeAt(node, \"JSXEmptyExpression\", this.state.startLoc);\n  }\n  jsxParseSpreadChild(node) {\n    this.next();\n    node.expression = this.parseExpression();\n    this.setContext(types.j_expr);\n    this.state.canStartJSXElement = true;\n    this.expect(8);\n    return this.finishNode(node, \"JSXSpreadChild\");\n  }\n  jsxParseExpressionContainer(node, previousContext) {\n    if (this.match(8)) {\n      node.expression = this.jsxParseEmptyExpression();\n    } else {\n      const expression = this.parseExpression();\n      node.expression = expression;\n    }\n    this.setContext(previousContext);\n    this.state.canStartJSXElement = true;\n    this.expect(8);\n    return this.finishNode(node, \"JSXExpressionContainer\");\n  }\n  jsxParseAttribute() {\n    const node = this.startNode();\n    if (this.match(5)) {\n      this.setContext(types.brace);\n      this.next();\n      this.expect(21);\n      node.argument = this.parseMaybeAssignAllowIn();\n      this.setContext(types.j_oTag);\n      this.state.canStartJSXElement = true;\n      this.expect(8);\n      return this.finishNode(node, \"JSXSpreadAttribute\");\n    }\n    node.name = this.jsxParseNamespacedName();\n    node.value = this.eat(29) ? this.jsxParseAttributeValue() : null;\n    return this.finishNode(node, \"JSXAttribute\");\n  }\n  jsxParseOpeningElementAt(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    if (this.eat(144)) {\n      return this.finishNode(node, \"JSXOpeningFragment\");\n    }\n    node.name = this.jsxParseElementName();\n    return this.jsxParseOpeningElementAfterName(node);\n  }\n  jsxParseOpeningElementAfterName(node) {\n    const attributes = [];\n    while (!this.match(56) && !this.match(144)) {\n      attributes.push(this.jsxParseAttribute());\n    }\n    node.attributes = attributes;\n    node.selfClosing = this.eat(56);\n    this.expect(144);\n    return this.finishNode(node, \"JSXOpeningElement\");\n  }\n  jsxParseClosingElementAt(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    if (this.eat(144)) {\n      return this.finishNode(node, \"JSXClosingFragment\");\n    }\n    node.name = this.jsxParseElementName();\n    this.expect(144);\n    return this.finishNode(node, \"JSXClosingElement\");\n  }\n  jsxParseElementAt(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    const children = [];\n    const openingElement = this.jsxParseOpeningElementAt(startLoc);\n    let closingElement = null;\n    if (!openingElement.selfClosing) {\n      contents: for (;;) {\n        switch (this.state.type) {\n          case 143:\n            startLoc = this.state.startLoc;\n            this.next();\n            if (this.eat(56)) {\n              closingElement = this.jsxParseClosingElementAt(startLoc);\n              break contents;\n            }\n            children.push(this.jsxParseElementAt(startLoc));\n            break;\n          case 142:\n            children.push(this.parseLiteral(this.state.value, \"JSXText\"));\n            break;\n          case 5:\n            {\n              const node = this.startNode();\n              this.setContext(types.brace);\n              this.next();\n              if (this.match(21)) {\n                children.push(this.jsxParseSpreadChild(node));\n              } else {\n                children.push(this.jsxParseExpressionContainer(node, types.j_expr));\n              }\n              break;\n            }\n          default:\n            this.unexpected();\n        }\n      }\n      if (isFragment(openingElement) && !isFragment(closingElement) && closingElement !== null) {\n        this.raise(JsxErrors.MissingClosingTagFragment, closingElement);\n      } else if (!isFragment(openingElement) && isFragment(closingElement)) {\n        this.raise(JsxErrors.MissingClosingTagElement, closingElement, {\n          openingTagName: getQualifiedJSXName(openingElement.name)\n        });\n      } else if (!isFragment(openingElement) && !isFragment(closingElement)) {\n        if (getQualifiedJSXName(closingElement.name) !== getQualifiedJSXName(openingElement.name)) {\n          this.raise(JsxErrors.MissingClosingTagElement, closingElement, {\n            openingTagName: getQualifiedJSXName(openingElement.name)\n          });\n        }\n      }\n    }\n    if (isFragment(openingElement)) {\n      node.openingFragment = openingElement;\n      node.closingFragment = closingElement;\n    } else {\n      node.openingElement = openingElement;\n      node.closingElement = closingElement;\n    }\n    node.children = children;\n    if (this.match(47)) {\n      throw this.raise(JsxErrors.UnwrappedAdjacentJSXElements, this.state.startLoc);\n    }\n    return isFragment(openingElement) ? this.finishNode(node, \"JSXFragment\") : this.finishNode(node, \"JSXElement\");\n  }\n  jsxParseElement() {\n    const startLoc = this.state.startLoc;\n    this.next();\n    return this.jsxParseElementAt(startLoc);\n  }\n  setContext(newContext) {\n    const {\n      context\n    } = this.state;\n    context[context.length - 1] = newContext;\n  }\n  parseExprAtom(refExpressionErrors) {\n    if (this.match(143)) {\n      return this.jsxParseElement();\n    } else if (this.match(47) && this.input.charCodeAt(this.state.pos) !== 33) {\n      this.replaceToken(143);\n      return this.jsxParseElement();\n    } else {\n      return super.parseExprAtom(refExpressionErrors);\n    }\n  }\n  skipSpace() {\n    const curContext = this.curContext();\n    if (!curContext.preserveSpace) super.skipSpace();\n  }\n  getTokenFromCode(code) {\n    const context = this.curContext();\n    if (context === types.j_expr) {\n      this.jsxReadToken();\n      return;\n    }\n    if (context === types.j_oTag || context === types.j_cTag) {\n      if (isIdentifierStart(code)) {\n        this.jsxReadWord();\n        return;\n      }\n      if (code === 62) {\n        ++this.state.pos;\n        this.finishToken(144);\n        return;\n      }\n      if ((code === 34 || code === 39) && context === types.j_oTag) {\n        this.jsxReadString(code);\n        return;\n      }\n    }\n    if (code === 60 && this.state.canStartJSXElement && this.input.charCodeAt(this.state.pos + 1) !== 33) {\n      ++this.state.pos;\n      this.finishToken(143);\n      return;\n    }\n    super.getTokenFromCode(code);\n  }\n  updateContext(prevType) {\n    const {\n      context,\n      type\n    } = this.state;\n    if (type === 56 && prevType === 143) {\n      context.splice(-2, 2, types.j_cTag);\n      this.state.canStartJSXElement = false;\n    } else if (type === 143) {\n      context.push(types.j_oTag);\n    } else if (type === 144) {\n      const out = context[context.length - 1];\n      if (out === types.j_oTag && prevType === 56 || out === types.j_cTag) {\n        context.pop();\n        this.state.canStartJSXElement = context[context.length - 1] === types.j_expr;\n      } else {\n        this.setContext(types.j_expr);\n        this.state.canStartJSXElement = true;\n      }\n    } else {\n      this.state.canStartJSXElement = tokenComesBeforeExpression(type);\n    }\n  }\n};\nclass TypeScriptScope extends Scope {\n  constructor(...args) {\n    super(...args);\n    this.tsNames = new Map();\n  }\n}\nclass TypeScriptScopeHandler extends ScopeHandler {\n  constructor(...args) {\n    super(...args);\n    this.importsStack = [];\n  }\n  createScope(flags) {\n    this.importsStack.push(new Set());\n    return new TypeScriptScope(flags);\n  }\n  enter(flags) {\n    if (flags === 1024) {\n      this.importsStack.push(new Set());\n    }\n    super.enter(flags);\n  }\n  exit() {\n    const flags = super.exit();\n    if (flags === 1024) {\n      this.importsStack.pop();\n    }\n    return flags;\n  }\n  hasImport(name, allowShadow) {\n    const len = this.importsStack.length;\n    if (this.importsStack[len - 1].has(name)) {\n      return true;\n    }\n    if (!allowShadow && len > 1) {\n      for (let i = 0; i < len - 1; i++) {\n        if (this.importsStack[i].has(name)) return true;\n      }\n    }\n    return false;\n  }\n  declareName(name, bindingType, loc) {\n    if (bindingType & 4096) {\n      if (this.hasImport(name, true)) {\n        this.parser.raise(Errors.VarRedeclaration, loc, {\n          identifierName: name\n        });\n      }\n      this.importsStack[this.importsStack.length - 1].add(name);\n      return;\n    }\n    const scope = this.currentScope();\n    let type = scope.tsNames.get(name) || 0;\n    if (bindingType & 1024) {\n      this.maybeExportDefined(scope, name);\n      scope.tsNames.set(name, type | 16);\n      return;\n    }\n    super.declareName(name, bindingType, loc);\n    if (bindingType & 2) {\n      if (!(bindingType & 1)) {\n        this.checkRedeclarationInScope(scope, name, bindingType, loc);\n        this.maybeExportDefined(scope, name);\n      }\n      type = type | 1;\n    }\n    if (bindingType & 256) {\n      type = type | 2;\n    }\n    if (bindingType & 512) {\n      type = type | 4;\n    }\n    if (bindingType & 128) {\n      type = type | 8;\n    }\n    if (type) scope.tsNames.set(name, type);\n  }\n  isRedeclaredInScope(scope, name, bindingType) {\n    const type = scope.tsNames.get(name);\n    if ((type & 2) > 0) {\n      if (bindingType & 256) {\n        const isConst = !!(bindingType & 512);\n        const wasConst = (type & 4) > 0;\n        return isConst !== wasConst;\n      }\n      return true;\n    }\n    if (bindingType & 128 && (type & 8) > 0) {\n      if (scope.names.get(name) & 2) {\n        return !!(bindingType & 1);\n      } else {\n        return false;\n      }\n    }\n    if (bindingType & 2 && (type & 1) > 0) {\n      return true;\n    }\n    return super.isRedeclaredInScope(scope, name, bindingType);\n  }\n  checkLocalExport(id) {\n    const {\n      name\n    } = id;\n    if (this.hasImport(name)) return;\n    const len = this.scopeStack.length;\n    for (let i = len - 1; i >= 0; i--) {\n      const scope = this.scopeStack[i];\n      const type = scope.tsNames.get(name);\n      if ((type & 1) > 0 || (type & 16) > 0) {\n        return;\n      }\n    }\n    super.checkLocalExport(id);\n  }\n}\nclass ProductionParameterHandler {\n  constructor() {\n    this.stacks = [];\n  }\n  enter(flags) {\n    this.stacks.push(flags);\n  }\n  exit() {\n    this.stacks.pop();\n  }\n  currentFlags() {\n    return this.stacks[this.stacks.length - 1];\n  }\n  get hasAwait() {\n    return (this.currentFlags() & 2) > 0;\n  }\n  get hasYield() {\n    return (this.currentFlags() & 1) > 0;\n  }\n  get hasReturn() {\n    return (this.currentFlags() & 4) > 0;\n  }\n  get hasIn() {\n    return (this.currentFlags() & 8) > 0;\n  }\n}\nfunction functionFlags(isAsync, isGenerator) {\n  return (isAsync ? 2 : 0) | (isGenerator ? 1 : 0);\n}\nclass BaseParser {\n  constructor() {\n    this.sawUnambiguousESM = false;\n    this.ambiguousScriptDifferentAst = false;\n  }\n  sourceToOffsetPos(sourcePos) {\n    return sourcePos + this.startIndex;\n  }\n  offsetToSourcePos(offsetPos) {\n    return offsetPos - this.startIndex;\n  }\n  hasPlugin(pluginConfig) {\n    if (typeof pluginConfig === \"string\") {\n      return this.plugins.has(pluginConfig);\n    } else {\n      const [pluginName, pluginOptions] = pluginConfig;\n      if (!this.hasPlugin(pluginName)) {\n        return false;\n      }\n      const actualOptions = this.plugins.get(pluginName);\n      for (const key of Object.keys(pluginOptions)) {\n        if ((actualOptions == null ? void 0 : actualOptions[key]) !== pluginOptions[key]) {\n          return false;\n        }\n      }\n      return true;\n    }\n  }\n  getPluginOption(plugin, name) {\n    var _this$plugins$get;\n    return (_this$plugins$get = this.plugins.get(plugin)) == null ? void 0 : _this$plugins$get[name];\n  }\n}\nfunction setTrailingComments(node, comments) {\n  if (node.trailingComments === undefined) {\n    node.trailingComments = comments;\n  } else {\n    node.trailingComments.unshift(...comments);\n  }\n}\nfunction setLeadingComments(node, comments) {\n  if (node.leadingComments === undefined) {\n    node.leadingComments = comments;\n  } else {\n    node.leadingComments.unshift(...comments);\n  }\n}\nfunction setInnerComments(node, comments) {\n  if (node.innerComments === undefined) {\n    node.innerComments = comments;\n  } else {\n    node.innerComments.unshift(...comments);\n  }\n}\nfunction adjustInnerComments(node, elements, commentWS) {\n  let lastElement = null;\n  let i = elements.length;\n  while (lastElement === null && i > 0) {\n    lastElement = elements[--i];\n  }\n  if (lastElement === null || lastElement.start > commentWS.start) {\n    setInnerComments(node, commentWS.comments);\n  } else {\n    setTrailingComments(lastElement, commentWS.comments);\n  }\n}\nclass CommentsParser extends BaseParser {\n  addComment(comment) {\n    if (this.filename) comment.loc.filename = this.filename;\n    const {\n      commentsLen\n    } = this.state;\n    if (this.comments.length !== commentsLen) {\n      this.comments.length = commentsLen;\n    }\n    this.comments.push(comment);\n    this.state.commentsLen++;\n  }\n  processComment(node) {\n    const {\n      commentStack\n    } = this.state;\n    const commentStackLength = commentStack.length;\n    if (commentStackLength === 0) return;\n    let i = commentStackLength - 1;\n    const lastCommentWS = commentStack[i];\n    if (lastCommentWS.start === node.end) {\n      lastCommentWS.leadingNode = node;\n      i--;\n    }\n    const {\n      start: nodeStart\n    } = node;\n    for (; i >= 0; i--) {\n      const commentWS = commentStack[i];\n      const commentEnd = commentWS.end;\n      if (commentEnd > nodeStart) {\n        commentWS.containingNode = node;\n        this.finalizeComment(commentWS);\n        commentStack.splice(i, 1);\n      } else {\n        if (commentEnd === nodeStart) {\n          commentWS.trailingNode = node;\n        }\n        break;\n      }\n    }\n  }\n  finalizeComment(commentWS) {\n    var _node$options;\n    const {\n      comments\n    } = commentWS;\n    if (commentWS.leadingNode !== null || commentWS.trailingNode !== null) {\n      if (commentWS.leadingNode !== null) {\n        setTrailingComments(commentWS.leadingNode, comments);\n      }\n      if (commentWS.trailingNode !== null) {\n        setLeadingComments(commentWS.trailingNode, comments);\n      }\n    } else {\n      const node = commentWS.containingNode;\n      const commentStart = commentWS.start;\n      if (this.input.charCodeAt(this.offsetToSourcePos(commentStart) - 1) === 44) {\n        switch (node.type) {\n          case \"ObjectExpression\":\n          case \"ObjectPattern\":\n          case \"RecordExpression\":\n            adjustInnerComments(node, node.properties, commentWS);\n            break;\n          case \"CallExpression\":\n          case \"OptionalCallExpression\":\n            adjustInnerComments(node, node.arguments, commentWS);\n            break;\n          case \"ImportExpression\":\n            adjustInnerComments(node, [node.source, (_node$options = node.options) != null ? _node$options : null], commentWS);\n            break;\n          case \"FunctionDeclaration\":\n          case \"FunctionExpression\":\n          case \"ArrowFunctionExpression\":\n          case \"ObjectMethod\":\n          case \"ClassMethod\":\n          case \"ClassPrivateMethod\":\n            adjustInnerComments(node, node.params, commentWS);\n            break;\n          case \"ArrayExpression\":\n          case \"ArrayPattern\":\n          case \"TupleExpression\":\n            adjustInnerComments(node, node.elements, commentWS);\n            break;\n          case \"ExportNamedDeclaration\":\n          case \"ImportDeclaration\":\n            adjustInnerComments(node, node.specifiers, commentWS);\n            break;\n          case \"TSEnumDeclaration\":\n            {\n              adjustInnerComments(node, node.members, commentWS);\n            }\n            break;\n          case \"TSEnumBody\":\n            adjustInnerComments(node, node.members, commentWS);\n            break;\n          default:\n            {\n              setInnerComments(node, comments);\n            }\n        }\n      } else {\n        setInnerComments(node, comments);\n      }\n    }\n  }\n  finalizeRemainingComments() {\n    const {\n      commentStack\n    } = this.state;\n    for (let i = commentStack.length - 1; i >= 0; i--) {\n      this.finalizeComment(commentStack[i]);\n    }\n    this.state.commentStack = [];\n  }\n  resetPreviousNodeTrailingComments(node) {\n    const {\n      commentStack\n    } = this.state;\n    const {\n      length\n    } = commentStack;\n    if (length === 0) return;\n    const commentWS = commentStack[length - 1];\n    if (commentWS.leadingNode === node) {\n      commentWS.leadingNode = null;\n    }\n  }\n  takeSurroundingComments(node, start, end) {\n    const {\n      commentStack\n    } = this.state;\n    const commentStackLength = commentStack.length;\n    if (commentStackLength === 0) return;\n    let i = commentStackLength - 1;\n    for (; i >= 0; i--) {\n      const commentWS = commentStack[i];\n      const commentEnd = commentWS.end;\n      const commentStart = commentWS.start;\n      if (commentStart === end) {\n        commentWS.leadingNode = node;\n      } else if (commentEnd === start) {\n        commentWS.trailingNode = node;\n      } else if (commentEnd < start) {\n        break;\n      }\n    }\n  }\n}\nclass State {\n  constructor() {\n    this.flags = 1024;\n    this.startIndex = void 0;\n    this.curLine = void 0;\n    this.lineStart = void 0;\n    this.startLoc = void 0;\n    this.endLoc = void 0;\n    this.errors = [];\n    this.potentialArrowAt = -1;\n    this.noArrowAt = [];\n    this.noArrowParamsConversionAt = [];\n    this.topicContext = {\n      maxNumOfResolvableTopics: 0,\n      maxTopicIndex: null\n    };\n    this.labels = [];\n    this.commentsLen = 0;\n    this.commentStack = [];\n    this.pos = 0;\n    this.type = 140;\n    this.value = null;\n    this.start = 0;\n    this.end = 0;\n    this.lastTokEndLoc = null;\n    this.lastTokStartLoc = null;\n    this.context = [types.brace];\n    this.firstInvalidTemplateEscapePos = null;\n    this.strictErrors = new Map();\n    this.tokensLength = 0;\n  }\n  get strict() {\n    return (this.flags & 1) > 0;\n  }\n  set strict(v) {\n    if (v) this.flags |= 1;else this.flags &= -2;\n  }\n  init({\n    strictMode,\n    sourceType,\n    startIndex,\n    startLine,\n    startColumn\n  }) {\n    this.strict = strictMode === false ? false : strictMode === true ? true : sourceType === \"module\";\n    this.startIndex = startIndex;\n    this.curLine = startLine;\n    this.lineStart = -startColumn;\n    this.startLoc = this.endLoc = new Position(startLine, startColumn, startIndex);\n  }\n  get maybeInArrowParameters() {\n    return (this.flags & 2) > 0;\n  }\n  set maybeInArrowParameters(v) {\n    if (v) this.flags |= 2;else this.flags &= -3;\n  }\n  get inType() {\n    return (this.flags & 4) > 0;\n  }\n  set inType(v) {\n    if (v) this.flags |= 4;else this.flags &= -5;\n  }\n  get noAnonFunctionType() {\n    return (this.flags & 8) > 0;\n  }\n  set noAnonFunctionType(v) {\n    if (v) this.flags |= 8;else this.flags &= -9;\n  }\n  get hasFlowComment() {\n    return (this.flags & 16) > 0;\n  }\n  set hasFlowComment(v) {\n    if (v) this.flags |= 16;else this.flags &= -17;\n  }\n  get isAmbientContext() {\n    return (this.flags & 32) > 0;\n  }\n  set isAmbientContext(v) {\n    if (v) this.flags |= 32;else this.flags &= -33;\n  }\n  get inAbstractClass() {\n    return (this.flags & 64) > 0;\n  }\n  set inAbstractClass(v) {\n    if (v) this.flags |= 64;else this.flags &= -65;\n  }\n  get inDisallowConditionalTypesContext() {\n    return (this.flags & 128) > 0;\n  }\n  set inDisallowConditionalTypesContext(v) {\n    if (v) this.flags |= 128;else this.flags &= -129;\n  }\n  get soloAwait() {\n    return (this.flags & 256) > 0;\n  }\n  set soloAwait(v) {\n    if (v) this.flags |= 256;else this.flags &= -257;\n  }\n  get inFSharpPipelineDirectBody() {\n    return (this.flags & 512) > 0;\n  }\n  set inFSharpPipelineDirectBody(v) {\n    if (v) this.flags |= 512;else this.flags &= -513;\n  }\n  get canStartJSXElement() {\n    return (this.flags & 1024) > 0;\n  }\n  set canStartJSXElement(v) {\n    if (v) this.flags |= 1024;else this.flags &= -1025;\n  }\n  get containsEsc() {\n    return (this.flags & 2048) > 0;\n  }\n  set containsEsc(v) {\n    if (v) this.flags |= 2048;else this.flags &= -2049;\n  }\n  get hasTopLevelAwait() {\n    return (this.flags & 4096) > 0;\n  }\n  set hasTopLevelAwait(v) {\n    if (v) this.flags |= 4096;else this.flags &= -4097;\n  }\n  curPosition() {\n    return new Position(this.curLine, this.pos - this.lineStart, this.pos + this.startIndex);\n  }\n  clone() {\n    const state = new State();\n    state.flags = this.flags;\n    state.startIndex = this.startIndex;\n    state.curLine = this.curLine;\n    state.lineStart = this.lineStart;\n    state.startLoc = this.startLoc;\n    state.endLoc = this.endLoc;\n    state.errors = this.errors.slice();\n    state.potentialArrowAt = this.potentialArrowAt;\n    state.noArrowAt = this.noArrowAt.slice();\n    state.noArrowParamsConversionAt = this.noArrowParamsConversionAt.slice();\n    state.topicContext = this.topicContext;\n    state.labels = this.labels.slice();\n    state.commentsLen = this.commentsLen;\n    state.commentStack = this.commentStack.slice();\n    state.pos = this.pos;\n    state.type = this.type;\n    state.value = this.value;\n    state.start = this.start;\n    state.end = this.end;\n    state.lastTokEndLoc = this.lastTokEndLoc;\n    state.lastTokStartLoc = this.lastTokStartLoc;\n    state.context = this.context.slice();\n    state.firstInvalidTemplateEscapePos = this.firstInvalidTemplateEscapePos;\n    state.strictErrors = this.strictErrors;\n    state.tokensLength = this.tokensLength;\n    return state;\n  }\n}\nvar _isDigit = function isDigit(code) {\n  return code >= 48 && code <= 57;\n};\nconst forbiddenNumericSeparatorSiblings = {\n  decBinOct: new Set([46, 66, 69, 79, 95, 98, 101, 111]),\n  hex: new Set([46, 88, 95, 120])\n};\nconst isAllowedNumericSeparatorSibling = {\n  bin: ch => ch === 48 || ch === 49,\n  oct: ch => ch >= 48 && ch <= 55,\n  dec: ch => ch >= 48 && ch <= 57,\n  hex: ch => ch >= 48 && ch <= 57 || ch >= 65 && ch <= 70 || ch >= 97 && ch <= 102\n};\nfunction readStringContents(type, input, pos, lineStart, curLine, errors) {\n  const initialPos = pos;\n  const initialLineStart = lineStart;\n  const initialCurLine = curLine;\n  let out = \"\";\n  let firstInvalidLoc = null;\n  let chunkStart = pos;\n  const {\n    length\n  } = input;\n  for (;;) {\n    if (pos >= length) {\n      errors.unterminated(initialPos, initialLineStart, initialCurLine);\n      out += input.slice(chunkStart, pos);\n      break;\n    }\n    const ch = input.charCodeAt(pos);\n    if (isStringEnd(type, ch, input, pos)) {\n      out += input.slice(chunkStart, pos);\n      break;\n    }\n    if (ch === 92) {\n      out += input.slice(chunkStart, pos);\n      const res = readEscapedChar(input, pos, lineStart, curLine, type === \"template\", errors);\n      if (res.ch === null && !firstInvalidLoc) {\n        firstInvalidLoc = {\n          pos,\n          lineStart,\n          curLine\n        };\n      } else {\n        out += res.ch;\n      }\n      ({\n        pos,\n        lineStart,\n        curLine\n      } = res);\n      chunkStart = pos;\n    } else if (ch === 8232 || ch === 8233) {\n      ++pos;\n      ++curLine;\n      lineStart = pos;\n    } else if (ch === 10 || ch === 13) {\n      if (type === \"template\") {\n        out += input.slice(chunkStart, pos) + \"\\n\";\n        ++pos;\n        if (ch === 13 && input.charCodeAt(pos) === 10) {\n          ++pos;\n        }\n        ++curLine;\n        chunkStart = lineStart = pos;\n      } else {\n        errors.unterminated(initialPos, initialLineStart, initialCurLine);\n      }\n    } else {\n      ++pos;\n    }\n  }\n  return {\n    pos,\n    str: out,\n    firstInvalidLoc,\n    lineStart,\n    curLine,\n    containsInvalid: !!firstInvalidLoc\n  };\n}\nfunction isStringEnd(type, ch, input, pos) {\n  if (type === \"template\") {\n    return ch === 96 || ch === 36 && input.charCodeAt(pos + 1) === 123;\n  }\n  return ch === (type === \"double\" ? 34 : 39);\n}\nfunction readEscapedChar(input, pos, lineStart, curLine, inTemplate, errors) {\n  const throwOnInvalid = !inTemplate;\n  pos++;\n  const res = ch => ({\n    pos,\n    ch,\n    lineStart,\n    curLine\n  });\n  const ch = input.charCodeAt(pos++);\n  switch (ch) {\n    case 110:\n      return res(\"\\n\");\n    case 114:\n      return res(\"\\r\");\n    case 120:\n      {\n        let code;\n        ({\n          code,\n          pos\n        } = readHexChar(input, pos, lineStart, curLine, 2, false, throwOnInvalid, errors));\n        return res(code === null ? null : String.fromCharCode(code));\n      }\n    case 117:\n      {\n        let code;\n        ({\n          code,\n          pos\n        } = readCodePoint(input, pos, lineStart, curLine, throwOnInvalid, errors));\n        return res(code === null ? null : String.fromCodePoint(code));\n      }\n    case 116:\n      return res(\"\\t\");\n    case 98:\n      return res(\"\\b\");\n    case 118:\n      return res(\"\\u000b\");\n    case 102:\n      return res(\"\\f\");\n    case 13:\n      if (input.charCodeAt(pos) === 10) {\n        ++pos;\n      }\n    case 10:\n      lineStart = pos;\n      ++curLine;\n    case 8232:\n    case 8233:\n      return res(\"\");\n    case 56:\n    case 57:\n      if (inTemplate) {\n        return res(null);\n      } else {\n        errors.strictNumericEscape(pos - 1, lineStart, curLine);\n      }\n    default:\n      if (ch >= 48 && ch <= 55) {\n        const startPos = pos - 1;\n        const match = /^[0-7]+/.exec(input.slice(startPos, pos + 2));\n        let octalStr = match[0];\n        let octal = parseInt(octalStr, 8);\n        if (octal > 255) {\n          octalStr = octalStr.slice(0, -1);\n          octal = parseInt(octalStr, 8);\n        }\n        pos += octalStr.length - 1;\n        const next = input.charCodeAt(pos);\n        if (octalStr !== \"0\" || next === 56 || next === 57) {\n          if (inTemplate) {\n            return res(null);\n          } else {\n            errors.strictNumericEscape(startPos, lineStart, curLine);\n          }\n        }\n        return res(String.fromCharCode(octal));\n      }\n      return res(String.fromCharCode(ch));\n  }\n}\nfunction readHexChar(input, pos, lineStart, curLine, len, forceLen, throwOnInvalid, errors) {\n  const initialPos = pos;\n  let n;\n  ({\n    n,\n    pos\n  } = readInt(input, pos, lineStart, curLine, 16, len, forceLen, false, errors, !throwOnInvalid));\n  if (n === null) {\n    if (throwOnInvalid) {\n      errors.invalidEscapeSequence(initialPos, lineStart, curLine);\n    } else {\n      pos = initialPos - 1;\n    }\n  }\n  return {\n    code: n,\n    pos\n  };\n}\nfunction readInt(input, pos, lineStart, curLine, radix, len, forceLen, allowNumSeparator, errors, bailOnError) {\n  const start = pos;\n  const forbiddenSiblings = radix === 16 ? forbiddenNumericSeparatorSiblings.hex : forbiddenNumericSeparatorSiblings.decBinOct;\n  const isAllowedSibling = radix === 16 ? isAllowedNumericSeparatorSibling.hex : radix === 10 ? isAllowedNumericSeparatorSibling.dec : radix === 8 ? isAllowedNumericSeparatorSibling.oct : isAllowedNumericSeparatorSibling.bin;\n  let invalid = false;\n  let total = 0;\n  for (let i = 0, e = len == null ? Infinity : len; i < e; ++i) {\n    const code = input.charCodeAt(pos);\n    let val;\n    if (code === 95 && allowNumSeparator !== \"bail\") {\n      const prev = input.charCodeAt(pos - 1);\n      const next = input.charCodeAt(pos + 1);\n      if (!allowNumSeparator) {\n        if (bailOnError) return {\n          n: null,\n          pos\n        };\n        errors.numericSeparatorInEscapeSequence(pos, lineStart, curLine);\n      } else if (Number.isNaN(next) || !isAllowedSibling(next) || forbiddenSiblings.has(prev) || forbiddenSiblings.has(next)) {\n        if (bailOnError) return {\n          n: null,\n          pos\n        };\n        errors.unexpectedNumericSeparator(pos, lineStart, curLine);\n      }\n      ++pos;\n      continue;\n    }\n    if (code >= 97) {\n      val = code - 97 + 10;\n    } else if (code >= 65) {\n      val = code - 65 + 10;\n    } else if (_isDigit(code)) {\n      val = code - 48;\n    } else {\n      val = Infinity;\n    }\n    if (val >= radix) {\n      if (val <= 9 && bailOnError) {\n        return {\n          n: null,\n          pos\n        };\n      } else if (val <= 9 && errors.invalidDigit(pos, lineStart, curLine, radix)) {\n        val = 0;\n      } else if (forceLen) {\n        val = 0;\n        invalid = true;\n      } else {\n        break;\n      }\n    }\n    ++pos;\n    total = total * radix + val;\n  }\n  if (pos === start || len != null && pos - start !== len || invalid) {\n    return {\n      n: null,\n      pos\n    };\n  }\n  return {\n    n: total,\n    pos\n  };\n}\nfunction readCodePoint(input, pos, lineStart, curLine, throwOnInvalid, errors) {\n  const ch = input.charCodeAt(pos);\n  let code;\n  if (ch === 123) {\n    ++pos;\n    ({\n      code,\n      pos\n    } = readHexChar(input, pos, lineStart, curLine, input.indexOf(\"}\", pos) - pos, true, throwOnInvalid, errors));\n    ++pos;\n    if (code !== null && code > 0x10ffff) {\n      if (throwOnInvalid) {\n        errors.invalidCodePoint(pos, lineStart, curLine);\n      } else {\n        return {\n          code: null,\n          pos\n        };\n      }\n    }\n  } else {\n    ({\n      code,\n      pos\n    } = readHexChar(input, pos, lineStart, curLine, 4, false, throwOnInvalid, errors));\n  }\n  return {\n    code,\n    pos\n  };\n}\nfunction buildPosition(pos, lineStart, curLine) {\n  return new Position(curLine, pos - lineStart, pos);\n}\nconst VALID_REGEX_FLAGS = new Set([103, 109, 115, 105, 121, 117, 100, 118]);\nclass Token {\n  constructor(state) {\n    const startIndex = state.startIndex || 0;\n    this.type = state.type;\n    this.value = state.value;\n    this.start = startIndex + state.start;\n    this.end = startIndex + state.end;\n    this.loc = new SourceLocation(state.startLoc, state.endLoc);\n  }\n}\nclass Tokenizer extends CommentsParser {\n  constructor(options, input) {\n    super();\n    this.isLookahead = void 0;\n    this.tokens = [];\n    this.errorHandlers_readInt = {\n      invalidDigit: (pos, lineStart, curLine, radix) => {\n        if (!(this.optionFlags & 2048)) return false;\n        this.raise(Errors.InvalidDigit, buildPosition(pos, lineStart, curLine), {\n          radix\n        });\n        return true;\n      },\n      numericSeparatorInEscapeSequence: this.errorBuilder(Errors.NumericSeparatorInEscapeSequence),\n      unexpectedNumericSeparator: this.errorBuilder(Errors.UnexpectedNumericSeparator)\n    };\n    this.errorHandlers_readCodePoint = Object.assign({}, this.errorHandlers_readInt, {\n      invalidEscapeSequence: this.errorBuilder(Errors.InvalidEscapeSequence),\n      invalidCodePoint: this.errorBuilder(Errors.InvalidCodePoint)\n    });\n    this.errorHandlers_readStringContents_string = Object.assign({}, this.errorHandlers_readCodePoint, {\n      strictNumericEscape: (pos, lineStart, curLine) => {\n        this.recordStrictModeErrors(Errors.StrictNumericEscape, buildPosition(pos, lineStart, curLine));\n      },\n      unterminated: (pos, lineStart, curLine) => {\n        throw this.raise(Errors.UnterminatedString, buildPosition(pos - 1, lineStart, curLine));\n      }\n    });\n    this.errorHandlers_readStringContents_template = Object.assign({}, this.errorHandlers_readCodePoint, {\n      strictNumericEscape: this.errorBuilder(Errors.StrictNumericEscape),\n      unterminated: (pos, lineStart, curLine) => {\n        throw this.raise(Errors.UnterminatedTemplate, buildPosition(pos, lineStart, curLine));\n      }\n    });\n    this.state = new State();\n    this.state.init(options);\n    this.input = input;\n    this.length = input.length;\n    this.comments = [];\n    this.isLookahead = false;\n  }\n  pushToken(token) {\n    this.tokens.length = this.state.tokensLength;\n    this.tokens.push(token);\n    ++this.state.tokensLength;\n  }\n  next() {\n    this.checkKeywordEscapes();\n    if (this.optionFlags & 256) {\n      this.pushToken(new Token(this.state));\n    }\n    this.state.lastTokEndLoc = this.state.endLoc;\n    this.state.lastTokStartLoc = this.state.startLoc;\n    this.nextToken();\n  }\n  eat(type) {\n    if (this.match(type)) {\n      this.next();\n      return true;\n    } else {\n      return false;\n    }\n  }\n  match(type) {\n    return this.state.type === type;\n  }\n  createLookaheadState(state) {\n    return {\n      pos: state.pos,\n      value: null,\n      type: state.type,\n      start: state.start,\n      end: state.end,\n      context: [this.curContext()],\n      inType: state.inType,\n      startLoc: state.startLoc,\n      lastTokEndLoc: state.lastTokEndLoc,\n      curLine: state.curLine,\n      lineStart: state.lineStart,\n      curPosition: state.curPosition\n    };\n  }\n  lookahead() {\n    const old = this.state;\n    this.state = this.createLookaheadState(old);\n    this.isLookahead = true;\n    this.nextToken();\n    this.isLookahead = false;\n    const curr = this.state;\n    this.state = old;\n    return curr;\n  }\n  nextTokenStart() {\n    return this.nextTokenStartSince(this.state.pos);\n  }\n  nextTokenStartSince(pos) {\n    skipWhiteSpace.lastIndex = pos;\n    return skipWhiteSpace.test(this.input) ? skipWhiteSpace.lastIndex : pos;\n  }\n  lookaheadCharCode() {\n    return this.lookaheadCharCodeSince(this.state.pos);\n  }\n  lookaheadCharCodeSince(pos) {\n    return this.input.charCodeAt(this.nextTokenStartSince(pos));\n  }\n  nextTokenInLineStart() {\n    return this.nextTokenInLineStartSince(this.state.pos);\n  }\n  nextTokenInLineStartSince(pos) {\n    skipWhiteSpaceInLine.lastIndex = pos;\n    return skipWhiteSpaceInLine.test(this.input) ? skipWhiteSpaceInLine.lastIndex : pos;\n  }\n  lookaheadInLineCharCode() {\n    return this.input.charCodeAt(this.nextTokenInLineStart());\n  }\n  codePointAtPos(pos) {\n    let cp = this.input.charCodeAt(pos);\n    if ((cp & 0xfc00) === 0xd800 && ++pos < this.input.length) {\n      const trail = this.input.charCodeAt(pos);\n      if ((trail & 0xfc00) === 0xdc00) {\n        cp = 0x10000 + ((cp & 0x3ff) << 10) + (trail & 0x3ff);\n      }\n    }\n    return cp;\n  }\n  setStrict(strict) {\n    this.state.strict = strict;\n    if (strict) {\n      this.state.strictErrors.forEach(([toParseError, at]) => this.raise(toParseError, at));\n      this.state.strictErrors.clear();\n    }\n  }\n  curContext() {\n    return this.state.context[this.state.context.length - 1];\n  }\n  nextToken() {\n    this.skipSpace();\n    this.state.start = this.state.pos;\n    if (!this.isLookahead) this.state.startLoc = this.state.curPosition();\n    if (this.state.pos >= this.length) {\n      this.finishToken(140);\n      return;\n    }\n    this.getTokenFromCode(this.codePointAtPos(this.state.pos));\n  }\n  skipBlockComment(commentEnd) {\n    let startLoc;\n    if (!this.isLookahead) startLoc = this.state.curPosition();\n    const start = this.state.pos;\n    const end = this.input.indexOf(commentEnd, start + 2);\n    if (end === -1) {\n      throw this.raise(Errors.UnterminatedComment, this.state.curPosition());\n    }\n    this.state.pos = end + commentEnd.length;\n    lineBreakG.lastIndex = start + 2;\n    while (lineBreakG.test(this.input) && lineBreakG.lastIndex <= end) {\n      ++this.state.curLine;\n      this.state.lineStart = lineBreakG.lastIndex;\n    }\n    if (this.isLookahead) return;\n    const comment = {\n      type: \"CommentBlock\",\n      value: this.input.slice(start + 2, end),\n      start: this.sourceToOffsetPos(start),\n      end: this.sourceToOffsetPos(end + commentEnd.length),\n      loc: new SourceLocation(startLoc, this.state.curPosition())\n    };\n    if (this.optionFlags & 256) this.pushToken(comment);\n    return comment;\n  }\n  skipLineComment(startSkip) {\n    const start = this.state.pos;\n    let startLoc;\n    if (!this.isLookahead) startLoc = this.state.curPosition();\n    let ch = this.input.charCodeAt(this.state.pos += startSkip);\n    if (this.state.pos < this.length) {\n      while (!isNewLine(ch) && ++this.state.pos < this.length) {\n        ch = this.input.charCodeAt(this.state.pos);\n      }\n    }\n    if (this.isLookahead) return;\n    const end = this.state.pos;\n    const value = this.input.slice(start + startSkip, end);\n    const comment = {\n      type: \"CommentLine\",\n      value,\n      start: this.sourceToOffsetPos(start),\n      end: this.sourceToOffsetPos(end),\n      loc: new SourceLocation(startLoc, this.state.curPosition())\n    };\n    if (this.optionFlags & 256) this.pushToken(comment);\n    return comment;\n  }\n  skipSpace() {\n    const spaceStart = this.state.pos;\n    const comments = this.optionFlags & 4096 ? [] : null;\n    loop: while (this.state.pos < this.length) {\n      const ch = this.input.charCodeAt(this.state.pos);\n      switch (ch) {\n        case 32:\n        case 160:\n        case 9:\n          ++this.state.pos;\n          break;\n        case 13:\n          if (this.input.charCodeAt(this.state.pos + 1) === 10) {\n            ++this.state.pos;\n          }\n        case 10:\n        case 8232:\n        case 8233:\n          ++this.state.pos;\n          ++this.state.curLine;\n          this.state.lineStart = this.state.pos;\n          break;\n        case 47:\n          switch (this.input.charCodeAt(this.state.pos + 1)) {\n            case 42:\n              {\n                const comment = this.skipBlockComment(\"*/\");\n                if (comment !== undefined) {\n                  this.addComment(comment);\n                  comments == null || comments.push(comment);\n                }\n                break;\n              }\n            case 47:\n              {\n                const comment = this.skipLineComment(2);\n                if (comment !== undefined) {\n                  this.addComment(comment);\n                  comments == null || comments.push(comment);\n                }\n                break;\n              }\n            default:\n              break loop;\n          }\n          break;\n        default:\n          if (isWhitespace(ch)) {\n            ++this.state.pos;\n          } else if (ch === 45 && !this.inModule && this.optionFlags & 8192) {\n            const pos = this.state.pos;\n            if (this.input.charCodeAt(pos + 1) === 45 && this.input.charCodeAt(pos + 2) === 62 && (spaceStart === 0 || this.state.lineStart > spaceStart)) {\n              const comment = this.skipLineComment(3);\n              if (comment !== undefined) {\n                this.addComment(comment);\n                comments == null || comments.push(comment);\n              }\n            } else {\n              break loop;\n            }\n          } else if (ch === 60 && !this.inModule && this.optionFlags & 8192) {\n            const pos = this.state.pos;\n            if (this.input.charCodeAt(pos + 1) === 33 && this.input.charCodeAt(pos + 2) === 45 && this.input.charCodeAt(pos + 3) === 45) {\n              const comment = this.skipLineComment(4);\n              if (comment !== undefined) {\n                this.addComment(comment);\n                comments == null || comments.push(comment);\n              }\n            } else {\n              break loop;\n            }\n          } else {\n            break loop;\n          }\n      }\n    }\n    if ((comments == null ? void 0 : comments.length) > 0) {\n      const end = this.state.pos;\n      const commentWhitespace = {\n        start: this.sourceToOffsetPos(spaceStart),\n        end: this.sourceToOffsetPos(end),\n        comments: comments,\n        leadingNode: null,\n        trailingNode: null,\n        containingNode: null\n      };\n      this.state.commentStack.push(commentWhitespace);\n    }\n  }\n  finishToken(type, val) {\n    this.state.end = this.state.pos;\n    this.state.endLoc = this.state.curPosition();\n    const prevType = this.state.type;\n    this.state.type = type;\n    this.state.value = val;\n    if (!this.isLookahead) {\n      this.updateContext(prevType);\n    }\n  }\n  replaceToken(type) {\n    this.state.type = type;\n    this.updateContext();\n  }\n  readToken_numberSign() {\n    if (this.state.pos === 0 && this.readToken_interpreter()) {\n      return;\n    }\n    const nextPos = this.state.pos + 1;\n    const next = this.codePointAtPos(nextPos);\n    if (next >= 48 && next <= 57) {\n      throw this.raise(Errors.UnexpectedDigitAfterHash, this.state.curPosition());\n    }\n    if (next === 123 || next === 91 && this.hasPlugin(\"recordAndTuple\")) {\n      this.expectPlugin(\"recordAndTuple\");\n      if (this.getPluginOption(\"recordAndTuple\", \"syntaxType\") === \"bar\") {\n        throw this.raise(next === 123 ? Errors.RecordExpressionHashIncorrectStartSyntaxType : Errors.TupleExpressionHashIncorrectStartSyntaxType, this.state.curPosition());\n      }\n      this.state.pos += 2;\n      if (next === 123) {\n        this.finishToken(7);\n      } else {\n        this.finishToken(1);\n      }\n    } else if (isIdentifierStart(next)) {\n      ++this.state.pos;\n      this.finishToken(139, this.readWord1(next));\n    } else if (next === 92) {\n      ++this.state.pos;\n      this.finishToken(139, this.readWord1());\n    } else {\n      this.finishOp(27, 1);\n    }\n  }\n  readToken_dot() {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next >= 48 && next <= 57) {\n      this.readNumber(true);\n      return;\n    }\n    if (next === 46 && this.input.charCodeAt(this.state.pos + 2) === 46) {\n      this.state.pos += 3;\n      this.finishToken(21);\n    } else {\n      ++this.state.pos;\n      this.finishToken(16);\n    }\n  }\n  readToken_slash() {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === 61) {\n      this.finishOp(31, 2);\n    } else {\n      this.finishOp(56, 1);\n    }\n  }\n  readToken_interpreter() {\n    if (this.state.pos !== 0 || this.length < 2) return false;\n    let ch = this.input.charCodeAt(this.state.pos + 1);\n    if (ch !== 33) return false;\n    const start = this.state.pos;\n    this.state.pos += 1;\n    while (!isNewLine(ch) && ++this.state.pos < this.length) {\n      ch = this.input.charCodeAt(this.state.pos);\n    }\n    const value = this.input.slice(start + 2, this.state.pos);\n    this.finishToken(28, value);\n    return true;\n  }\n  readToken_mult_modulo(code) {\n    let type = code === 42 ? 55 : 54;\n    let width = 1;\n    let next = this.input.charCodeAt(this.state.pos + 1);\n    if (code === 42 && next === 42) {\n      width++;\n      next = this.input.charCodeAt(this.state.pos + 2);\n      type = 57;\n    }\n    if (next === 61 && !this.state.inType) {\n      width++;\n      type = code === 37 ? 33 : 30;\n    }\n    this.finishOp(type, width);\n  }\n  readToken_pipe_amp(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === code) {\n      if (this.input.charCodeAt(this.state.pos + 2) === 61) {\n        this.finishOp(30, 3);\n      } else {\n        this.finishOp(code === 124 ? 41 : 42, 2);\n      }\n      return;\n    }\n    if (code === 124) {\n      if (next === 62) {\n        this.finishOp(39, 2);\n        return;\n      }\n      if (this.hasPlugin(\"recordAndTuple\") && next === 125) {\n        if (this.getPluginOption(\"recordAndTuple\", \"syntaxType\") !== \"bar\") {\n          throw this.raise(Errors.RecordExpressionBarIncorrectEndSyntaxType, this.state.curPosition());\n        }\n        this.state.pos += 2;\n        this.finishToken(9);\n        return;\n      }\n      if (this.hasPlugin(\"recordAndTuple\") && next === 93) {\n        if (this.getPluginOption(\"recordAndTuple\", \"syntaxType\") !== \"bar\") {\n          throw this.raise(Errors.TupleExpressionBarIncorrectEndSyntaxType, this.state.curPosition());\n        }\n        this.state.pos += 2;\n        this.finishToken(4);\n        return;\n      }\n    }\n    if (next === 61) {\n      this.finishOp(30, 2);\n      return;\n    }\n    this.finishOp(code === 124 ? 43 : 45, 1);\n  }\n  readToken_caret() {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === 61 && !this.state.inType) {\n      this.finishOp(32, 2);\n    } else if (next === 94 && this.hasPlugin([\"pipelineOperator\", {\n      proposal: \"hack\",\n      topicToken: \"^^\"\n    }])) {\n      this.finishOp(37, 2);\n      const lookaheadCh = this.input.codePointAt(this.state.pos);\n      if (lookaheadCh === 94) {\n        this.unexpected();\n      }\n    } else {\n      this.finishOp(44, 1);\n    }\n  }\n  readToken_atSign() {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === 64 && this.hasPlugin([\"pipelineOperator\", {\n      proposal: \"hack\",\n      topicToken: \"@@\"\n    }])) {\n      this.finishOp(38, 2);\n    } else {\n      this.finishOp(26, 1);\n    }\n  }\n  readToken_plus_min(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === code) {\n      this.finishOp(34, 2);\n      return;\n    }\n    if (next === 61) {\n      this.finishOp(30, 2);\n    } else {\n      this.finishOp(53, 1);\n    }\n  }\n  readToken_lt() {\n    const {\n      pos\n    } = this.state;\n    const next = this.input.charCodeAt(pos + 1);\n    if (next === 60) {\n      if (this.input.charCodeAt(pos + 2) === 61) {\n        this.finishOp(30, 3);\n        return;\n      }\n      this.finishOp(51, 2);\n      return;\n    }\n    if (next === 61) {\n      this.finishOp(49, 2);\n      return;\n    }\n    this.finishOp(47, 1);\n  }\n  readToken_gt() {\n    const {\n      pos\n    } = this.state;\n    const next = this.input.charCodeAt(pos + 1);\n    if (next === 62) {\n      const size = this.input.charCodeAt(pos + 2) === 62 ? 3 : 2;\n      if (this.input.charCodeAt(pos + size) === 61) {\n        this.finishOp(30, size + 1);\n        return;\n      }\n      this.finishOp(52, size);\n      return;\n    }\n    if (next === 61) {\n      this.finishOp(49, 2);\n      return;\n    }\n    this.finishOp(48, 1);\n  }\n  readToken_eq_excl(code) {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    if (next === 61) {\n      this.finishOp(46, this.input.charCodeAt(this.state.pos + 2) === 61 ? 3 : 2);\n      return;\n    }\n    if (code === 61 && next === 62) {\n      this.state.pos += 2;\n      this.finishToken(19);\n      return;\n    }\n    this.finishOp(code === 61 ? 29 : 35, 1);\n  }\n  readToken_question() {\n    const next = this.input.charCodeAt(this.state.pos + 1);\n    const next2 = this.input.charCodeAt(this.state.pos + 2);\n    if (next === 63) {\n      if (next2 === 61) {\n        this.finishOp(30, 3);\n      } else {\n        this.finishOp(40, 2);\n      }\n    } else if (next === 46 && !(next2 >= 48 && next2 <= 57)) {\n      this.state.pos += 2;\n      this.finishToken(18);\n    } else {\n      ++this.state.pos;\n      this.finishToken(17);\n    }\n  }\n  getTokenFromCode(code) {\n    switch (code) {\n      case 46:\n        this.readToken_dot();\n        return;\n      case 40:\n        ++this.state.pos;\n        this.finishToken(10);\n        return;\n      case 41:\n        ++this.state.pos;\n        this.finishToken(11);\n        return;\n      case 59:\n        ++this.state.pos;\n        this.finishToken(13);\n        return;\n      case 44:\n        ++this.state.pos;\n        this.finishToken(12);\n        return;\n      case 91:\n        if (this.hasPlugin(\"recordAndTuple\") && this.input.charCodeAt(this.state.pos + 1) === 124) {\n          if (this.getPluginOption(\"recordAndTuple\", \"syntaxType\") !== \"bar\") {\n            throw this.raise(Errors.TupleExpressionBarIncorrectStartSyntaxType, this.state.curPosition());\n          }\n          this.state.pos += 2;\n          this.finishToken(2);\n        } else {\n          ++this.state.pos;\n          this.finishToken(0);\n        }\n        return;\n      case 93:\n        ++this.state.pos;\n        this.finishToken(3);\n        return;\n      case 123:\n        if (this.hasPlugin(\"recordAndTuple\") && this.input.charCodeAt(this.state.pos + 1) === 124) {\n          if (this.getPluginOption(\"recordAndTuple\", \"syntaxType\") !== \"bar\") {\n            throw this.raise(Errors.RecordExpressionBarIncorrectStartSyntaxType, this.state.curPosition());\n          }\n          this.state.pos += 2;\n          this.finishToken(6);\n        } else {\n          ++this.state.pos;\n          this.finishToken(5);\n        }\n        return;\n      case 125:\n        ++this.state.pos;\n        this.finishToken(8);\n        return;\n      case 58:\n        if (this.hasPlugin(\"functionBind\") && this.input.charCodeAt(this.state.pos + 1) === 58) {\n          this.finishOp(15, 2);\n        } else {\n          ++this.state.pos;\n          this.finishToken(14);\n        }\n        return;\n      case 63:\n        this.readToken_question();\n        return;\n      case 96:\n        this.readTemplateToken();\n        return;\n      case 48:\n        {\n          const next = this.input.charCodeAt(this.state.pos + 1);\n          if (next === 120 || next === 88) {\n            this.readRadixNumber(16);\n            return;\n          }\n          if (next === 111 || next === 79) {\n            this.readRadixNumber(8);\n            return;\n          }\n          if (next === 98 || next === 66) {\n            this.readRadixNumber(2);\n            return;\n          }\n        }\n      case 49:\n      case 50:\n      case 51:\n      case 52:\n      case 53:\n      case 54:\n      case 55:\n      case 56:\n      case 57:\n        this.readNumber(false);\n        return;\n      case 34:\n      case 39:\n        this.readString(code);\n        return;\n      case 47:\n        this.readToken_slash();\n        return;\n      case 37:\n      case 42:\n        this.readToken_mult_modulo(code);\n        return;\n      case 124:\n      case 38:\n        this.readToken_pipe_amp(code);\n        return;\n      case 94:\n        this.readToken_caret();\n        return;\n      case 43:\n      case 45:\n        this.readToken_plus_min(code);\n        return;\n      case 60:\n        this.readToken_lt();\n        return;\n      case 62:\n        this.readToken_gt();\n        return;\n      case 61:\n      case 33:\n        this.readToken_eq_excl(code);\n        return;\n      case 126:\n        this.finishOp(36, 1);\n        return;\n      case 64:\n        this.readToken_atSign();\n        return;\n      case 35:\n        this.readToken_numberSign();\n        return;\n      case 92:\n        this.readWord();\n        return;\n      default:\n        if (isIdentifierStart(code)) {\n          this.readWord(code);\n          return;\n        }\n    }\n    throw this.raise(Errors.InvalidOrUnexpectedToken, this.state.curPosition(), {\n      unexpected: String.fromCodePoint(code)\n    });\n  }\n  finishOp(type, size) {\n    const str = this.input.slice(this.state.pos, this.state.pos + size);\n    this.state.pos += size;\n    this.finishToken(type, str);\n  }\n  readRegexp() {\n    const startLoc = this.state.startLoc;\n    const start = this.state.start + 1;\n    let escaped, inClass;\n    let {\n      pos\n    } = this.state;\n    for (;; ++pos) {\n      if (pos >= this.length) {\n        throw this.raise(Errors.UnterminatedRegExp, createPositionWithColumnOffset(startLoc, 1));\n      }\n      const ch = this.input.charCodeAt(pos);\n      if (isNewLine(ch)) {\n        throw this.raise(Errors.UnterminatedRegExp, createPositionWithColumnOffset(startLoc, 1));\n      }\n      if (escaped) {\n        escaped = false;\n      } else {\n        if (ch === 91) {\n          inClass = true;\n        } else if (ch === 93 && inClass) {\n          inClass = false;\n        } else if (ch === 47 && !inClass) {\n          break;\n        }\n        escaped = ch === 92;\n      }\n    }\n    const content = this.input.slice(start, pos);\n    ++pos;\n    let mods = \"\";\n    const nextPos = () => createPositionWithColumnOffset(startLoc, pos + 2 - start);\n    while (pos < this.length) {\n      const cp = this.codePointAtPos(pos);\n      const char = String.fromCharCode(cp);\n      if (VALID_REGEX_FLAGS.has(cp)) {\n        if (cp === 118) {\n          if (mods.includes(\"u\")) {\n            this.raise(Errors.IncompatibleRegExpUVFlags, nextPos());\n          }\n        } else if (cp === 117) {\n          if (mods.includes(\"v\")) {\n            this.raise(Errors.IncompatibleRegExpUVFlags, nextPos());\n          }\n        }\n        if (mods.includes(char)) {\n          this.raise(Errors.DuplicateRegExpFlags, nextPos());\n        }\n      } else if (isIdentifierChar(cp) || cp === 92) {\n        this.raise(Errors.MalformedRegExpFlags, nextPos());\n      } else {\n        break;\n      }\n      ++pos;\n      mods += char;\n    }\n    this.state.pos = pos;\n    this.finishToken(138, {\n      pattern: content,\n      flags: mods\n    });\n  }\n  readInt(radix, len, forceLen = false, allowNumSeparator = true) {\n    const {\n      n,\n      pos\n    } = readInt(this.input, this.state.pos, this.state.lineStart, this.state.curLine, radix, len, forceLen, allowNumSeparator, this.errorHandlers_readInt, false);\n    this.state.pos = pos;\n    return n;\n  }\n  readRadixNumber(radix) {\n    const start = this.state.pos;\n    const startLoc = this.state.curPosition();\n    let isBigInt = false;\n    this.state.pos += 2;\n    const val = this.readInt(radix);\n    if (val == null) {\n      this.raise(Errors.InvalidDigit, createPositionWithColumnOffset(startLoc, 2), {\n        radix\n      });\n    }\n    const next = this.input.charCodeAt(this.state.pos);\n    if (next === 110) {\n      ++this.state.pos;\n      isBigInt = true;\n    } else if (next === 109) {\n      throw this.raise(Errors.InvalidDecimal, startLoc);\n    }\n    if (isIdentifierStart(this.codePointAtPos(this.state.pos))) {\n      throw this.raise(Errors.NumberIdentifier, this.state.curPosition());\n    }\n    if (isBigInt) {\n      const str = this.input.slice(start, this.state.pos).replace(/[_n]/g, \"\");\n      this.finishToken(136, str);\n      return;\n    }\n    this.finishToken(135, val);\n  }\n  readNumber(startsWithDot) {\n    const start = this.state.pos;\n    const startLoc = this.state.curPosition();\n    let isFloat = false;\n    let isBigInt = false;\n    let hasExponent = false;\n    let isOctal = false;\n    if (!startsWithDot && this.readInt(10) === null) {\n      this.raise(Errors.InvalidNumber, this.state.curPosition());\n    }\n    const hasLeadingZero = this.state.pos - start >= 2 && this.input.charCodeAt(start) === 48;\n    if (hasLeadingZero) {\n      const integer = this.input.slice(start, this.state.pos);\n      this.recordStrictModeErrors(Errors.StrictOctalLiteral, startLoc);\n      if (!this.state.strict) {\n        const underscorePos = integer.indexOf(\"_\");\n        if (underscorePos > 0) {\n          this.raise(Errors.ZeroDigitNumericSeparator, createPositionWithColumnOffset(startLoc, underscorePos));\n        }\n      }\n      isOctal = hasLeadingZero && !/[89]/.test(integer);\n    }\n    let next = this.input.charCodeAt(this.state.pos);\n    if (next === 46 && !isOctal) {\n      ++this.state.pos;\n      this.readInt(10);\n      isFloat = true;\n      next = this.input.charCodeAt(this.state.pos);\n    }\n    if ((next === 69 || next === 101) && !isOctal) {\n      next = this.input.charCodeAt(++this.state.pos);\n      if (next === 43 || next === 45) {\n        ++this.state.pos;\n      }\n      if (this.readInt(10) === null) {\n        this.raise(Errors.InvalidOrMissingExponent, startLoc);\n      }\n      isFloat = true;\n      hasExponent = true;\n      next = this.input.charCodeAt(this.state.pos);\n    }\n    if (next === 110) {\n      if (isFloat || hasLeadingZero) {\n        this.raise(Errors.InvalidBigIntLiteral, startLoc);\n      }\n      ++this.state.pos;\n      isBigInt = true;\n    }\n    if (next === 109) {\n      this.expectPlugin(\"decimal\", this.state.curPosition());\n      if (hasExponent || hasLeadingZero) {\n        this.raise(Errors.InvalidDecimal, startLoc);\n      }\n      ++this.state.pos;\n      var isDecimal = true;\n    }\n    if (isIdentifierStart(this.codePointAtPos(this.state.pos))) {\n      throw this.raise(Errors.NumberIdentifier, this.state.curPosition());\n    }\n    const str = this.input.slice(start, this.state.pos).replace(/[_mn]/g, \"\");\n    if (isBigInt) {\n      this.finishToken(136, str);\n      return;\n    }\n    if (isDecimal) {\n      this.finishToken(137, str);\n      return;\n    }\n    const val = isOctal ? parseInt(str, 8) : parseFloat(str);\n    this.finishToken(135, val);\n  }\n  readCodePoint(throwOnInvalid) {\n    const {\n      code,\n      pos\n    } = readCodePoint(this.input, this.state.pos, this.state.lineStart, this.state.curLine, throwOnInvalid, this.errorHandlers_readCodePoint);\n    this.state.pos = pos;\n    return code;\n  }\n  readString(quote) {\n    const {\n      str,\n      pos,\n      curLine,\n      lineStart\n    } = readStringContents(quote === 34 ? \"double\" : \"single\", this.input, this.state.pos + 1, this.state.lineStart, this.state.curLine, this.errorHandlers_readStringContents_string);\n    this.state.pos = pos + 1;\n    this.state.lineStart = lineStart;\n    this.state.curLine = curLine;\n    this.finishToken(134, str);\n  }\n  readTemplateContinuation() {\n    if (!this.match(8)) {\n      this.unexpected(null, 8);\n    }\n    this.state.pos--;\n    this.readTemplateToken();\n  }\n  readTemplateToken() {\n    const opening = this.input[this.state.pos];\n    const {\n      str,\n      firstInvalidLoc,\n      pos,\n      curLine,\n      lineStart\n    } = readStringContents(\"template\", this.input, this.state.pos + 1, this.state.lineStart, this.state.curLine, this.errorHandlers_readStringContents_template);\n    this.state.pos = pos + 1;\n    this.state.lineStart = lineStart;\n    this.state.curLine = curLine;\n    if (firstInvalidLoc) {\n      this.state.firstInvalidTemplateEscapePos = new Position(firstInvalidLoc.curLine, firstInvalidLoc.pos - firstInvalidLoc.lineStart, this.sourceToOffsetPos(firstInvalidLoc.pos));\n    }\n    if (this.input.codePointAt(pos) === 96) {\n      this.finishToken(24, firstInvalidLoc ? null : opening + str + \"`\");\n    } else {\n      this.state.pos++;\n      this.finishToken(25, firstInvalidLoc ? null : opening + str + \"${\");\n    }\n  }\n  recordStrictModeErrors(toParseError, at) {\n    const index = at.index;\n    if (this.state.strict && !this.state.strictErrors.has(index)) {\n      this.raise(toParseError, at);\n    } else {\n      this.state.strictErrors.set(index, [toParseError, at]);\n    }\n  }\n  readWord1(firstCode) {\n    this.state.containsEsc = false;\n    let word = \"\";\n    const start = this.state.pos;\n    let chunkStart = this.state.pos;\n    if (firstCode !== undefined) {\n      this.state.pos += firstCode <= 0xffff ? 1 : 2;\n    }\n    while (this.state.pos < this.length) {\n      const ch = this.codePointAtPos(this.state.pos);\n      if (isIdentifierChar(ch)) {\n        this.state.pos += ch <= 0xffff ? 1 : 2;\n      } else if (ch === 92) {\n        this.state.containsEsc = true;\n        word += this.input.slice(chunkStart, this.state.pos);\n        const escStart = this.state.curPosition();\n        const identifierCheck = this.state.pos === start ? isIdentifierStart : isIdentifierChar;\n        if (this.input.charCodeAt(++this.state.pos) !== 117) {\n          this.raise(Errors.MissingUnicodeEscape, this.state.curPosition());\n          chunkStart = this.state.pos - 1;\n          continue;\n        }\n        ++this.state.pos;\n        const esc = this.readCodePoint(true);\n        if (esc !== null) {\n          if (!identifierCheck(esc)) {\n            this.raise(Errors.EscapedCharNotAnIdentifier, escStart);\n          }\n          word += String.fromCodePoint(esc);\n        }\n        chunkStart = this.state.pos;\n      } else {\n        break;\n      }\n    }\n    return word + this.input.slice(chunkStart, this.state.pos);\n  }\n  readWord(firstCode) {\n    const word = this.readWord1(firstCode);\n    const type = keywords$1.get(word);\n    if (type !== undefined) {\n      this.finishToken(type, tokenLabelName(type));\n    } else {\n      this.finishToken(132, word);\n    }\n  }\n  checkKeywordEscapes() {\n    const {\n      type\n    } = this.state;\n    if (tokenIsKeyword(type) && this.state.containsEsc) {\n      this.raise(Errors.InvalidEscapedReservedWord, this.state.startLoc, {\n        reservedWord: tokenLabelName(type)\n      });\n    }\n  }\n  raise(toParseError, at, details = {}) {\n    const loc = at instanceof Position ? at : at.loc.start;\n    const error = toParseError(loc, details);\n    if (!(this.optionFlags & 2048)) throw error;\n    if (!this.isLookahead) this.state.errors.push(error);\n    return error;\n  }\n  raiseOverwrite(toParseError, at, details = {}) {\n    const loc = at instanceof Position ? at : at.loc.start;\n    const pos = loc.index;\n    const errors = this.state.errors;\n    for (let i = errors.length - 1; i >= 0; i--) {\n      const error = errors[i];\n      if (error.loc.index === pos) {\n        return errors[i] = toParseError(loc, details);\n      }\n      if (error.loc.index < pos) break;\n    }\n    return this.raise(toParseError, at, details);\n  }\n  updateContext(prevType) {}\n  unexpected(loc, type) {\n    throw this.raise(Errors.UnexpectedToken, loc != null ? loc : this.state.startLoc, {\n      expected: type ? tokenLabelName(type) : null\n    });\n  }\n  expectPlugin(pluginName, loc) {\n    if (this.hasPlugin(pluginName)) {\n      return true;\n    }\n    throw this.raise(Errors.MissingPlugin, loc != null ? loc : this.state.startLoc, {\n      missingPlugin: [pluginName]\n    });\n  }\n  expectOnePlugin(pluginNames) {\n    if (!pluginNames.some(name => this.hasPlugin(name))) {\n      throw this.raise(Errors.MissingOneOfPlugins, this.state.startLoc, {\n        missingPlugin: pluginNames\n      });\n    }\n  }\n  errorBuilder(error) {\n    return (pos, lineStart, curLine) => {\n      this.raise(error, buildPosition(pos, lineStart, curLine));\n    };\n  }\n}\nclass ClassScope {\n  constructor() {\n    this.privateNames = new Set();\n    this.loneAccessors = new Map();\n    this.undefinedPrivateNames = new Map();\n  }\n}\nclass ClassScopeHandler {\n  constructor(parser) {\n    this.parser = void 0;\n    this.stack = [];\n    this.undefinedPrivateNames = new Map();\n    this.parser = parser;\n  }\n  current() {\n    return this.stack[this.stack.length - 1];\n  }\n  enter() {\n    this.stack.push(new ClassScope());\n  }\n  exit() {\n    const oldClassScope = this.stack.pop();\n    const current = this.current();\n    for (const [name, loc] of Array.from(oldClassScope.undefinedPrivateNames)) {\n      if (current) {\n        if (!current.undefinedPrivateNames.has(name)) {\n          current.undefinedPrivateNames.set(name, loc);\n        }\n      } else {\n        this.parser.raise(Errors.InvalidPrivateFieldResolution, loc, {\n          identifierName: name\n        });\n      }\n    }\n  }\n  declarePrivateName(name, elementType, loc) {\n    const {\n      privateNames,\n      loneAccessors,\n      undefinedPrivateNames\n    } = this.current();\n    let redefined = privateNames.has(name);\n    if (elementType & 3) {\n      const accessor = redefined && loneAccessors.get(name);\n      if (accessor) {\n        const oldStatic = accessor & 4;\n        const newStatic = elementType & 4;\n        const oldKind = accessor & 3;\n        const newKind = elementType & 3;\n        redefined = oldKind === newKind || oldStatic !== newStatic;\n        if (!redefined) loneAccessors.delete(name);\n      } else if (!redefined) {\n        loneAccessors.set(name, elementType);\n      }\n    }\n    if (redefined) {\n      this.parser.raise(Errors.PrivateNameRedeclaration, loc, {\n        identifierName: name\n      });\n    }\n    privateNames.add(name);\n    undefinedPrivateNames.delete(name);\n  }\n  usePrivateName(name, loc) {\n    let classScope;\n    for (classScope of this.stack) {\n      if (classScope.privateNames.has(name)) return;\n    }\n    if (classScope) {\n      classScope.undefinedPrivateNames.set(name, loc);\n    } else {\n      this.parser.raise(Errors.InvalidPrivateFieldResolution, loc, {\n        identifierName: name\n      });\n    }\n  }\n}\nclass ExpressionScope {\n  constructor(type = 0) {\n    this.type = type;\n  }\n  canBeArrowParameterDeclaration() {\n    return this.type === 2 || this.type === 1;\n  }\n  isCertainlyParameterDeclaration() {\n    return this.type === 3;\n  }\n}\nclass ArrowHeadParsingScope extends ExpressionScope {\n  constructor(type) {\n    super(type);\n    this.declarationErrors = new Map();\n  }\n  recordDeclarationError(ParsingErrorClass, at) {\n    const index = at.index;\n    this.declarationErrors.set(index, [ParsingErrorClass, at]);\n  }\n  clearDeclarationError(index) {\n    this.declarationErrors.delete(index);\n  }\n  iterateErrors(iterator) {\n    this.declarationErrors.forEach(iterator);\n  }\n}\nclass ExpressionScopeHandler {\n  constructor(parser) {\n    this.parser = void 0;\n    this.stack = [new ExpressionScope()];\n    this.parser = parser;\n  }\n  enter(scope) {\n    this.stack.push(scope);\n  }\n  exit() {\n    this.stack.pop();\n  }\n  recordParameterInitializerError(toParseError, node) {\n    const origin = node.loc.start;\n    const {\n      stack\n    } = this;\n    let i = stack.length - 1;\n    let scope = stack[i];\n    while (!scope.isCertainlyParameterDeclaration()) {\n      if (scope.canBeArrowParameterDeclaration()) {\n        scope.recordDeclarationError(toParseError, origin);\n      } else {\n        return;\n      }\n      scope = stack[--i];\n    }\n    this.parser.raise(toParseError, origin);\n  }\n  recordArrowParameterBindingError(error, node) {\n    const {\n      stack\n    } = this;\n    const scope = stack[stack.length - 1];\n    const origin = node.loc.start;\n    if (scope.isCertainlyParameterDeclaration()) {\n      this.parser.raise(error, origin);\n    } else if (scope.canBeArrowParameterDeclaration()) {\n      scope.recordDeclarationError(error, origin);\n    } else {\n      return;\n    }\n  }\n  recordAsyncArrowParametersError(at) {\n    const {\n      stack\n    } = this;\n    let i = stack.length - 1;\n    let scope = stack[i];\n    while (scope.canBeArrowParameterDeclaration()) {\n      if (scope.type === 2) {\n        scope.recordDeclarationError(Errors.AwaitBindingIdentifier, at);\n      }\n      scope = stack[--i];\n    }\n  }\n  validateAsPattern() {\n    const {\n      stack\n    } = this;\n    const currentScope = stack[stack.length - 1];\n    if (!currentScope.canBeArrowParameterDeclaration()) return;\n    currentScope.iterateErrors(([toParseError, loc]) => {\n      this.parser.raise(toParseError, loc);\n      let i = stack.length - 2;\n      let scope = stack[i];\n      while (scope.canBeArrowParameterDeclaration()) {\n        scope.clearDeclarationError(loc.index);\n        scope = stack[--i];\n      }\n    });\n  }\n}\nfunction newParameterDeclarationScope() {\n  return new ExpressionScope(3);\n}\nfunction newArrowHeadScope() {\n  return new ArrowHeadParsingScope(1);\n}\nfunction newAsyncArrowScope() {\n  return new ArrowHeadParsingScope(2);\n}\nfunction newExpressionScope() {\n  return new ExpressionScope();\n}\nclass UtilParser extends Tokenizer {\n  addExtra(node, key, value, enumerable = true) {\n    if (!node) return;\n    let {\n      extra\n    } = node;\n    if (extra == null) {\n      extra = {};\n      node.extra = extra;\n    }\n    if (enumerable) {\n      extra[key] = value;\n    } else {\n      Object.defineProperty(extra, key, {\n        enumerable,\n        value\n      });\n    }\n  }\n  isContextual(token) {\n    return this.state.type === token && !this.state.containsEsc;\n  }\n  isUnparsedContextual(nameStart, name) {\n    if (this.input.startsWith(name, nameStart)) {\n      const nextCh = this.input.charCodeAt(nameStart + name.length);\n      return !(isIdentifierChar(nextCh) || (nextCh & 0xfc00) === 0xd800);\n    }\n    return false;\n  }\n  isLookaheadContextual(name) {\n    const next = this.nextTokenStart();\n    return this.isUnparsedContextual(next, name);\n  }\n  eatContextual(token) {\n    if (this.isContextual(token)) {\n      this.next();\n      return true;\n    }\n    return false;\n  }\n  expectContextual(token, toParseError) {\n    if (!this.eatContextual(token)) {\n      if (toParseError != null) {\n        throw this.raise(toParseError, this.state.startLoc);\n      }\n      this.unexpected(null, token);\n    }\n  }\n  canInsertSemicolon() {\n    return this.match(140) || this.match(8) || this.hasPrecedingLineBreak();\n  }\n  hasPrecedingLineBreak() {\n    return hasNewLine(this.input, this.offsetToSourcePos(this.state.lastTokEndLoc.index), this.state.start);\n  }\n  hasFollowingLineBreak() {\n    return hasNewLine(this.input, this.state.end, this.nextTokenStart());\n  }\n  isLineTerminator() {\n    return this.eat(13) || this.canInsertSemicolon();\n  }\n  semicolon(allowAsi = true) {\n    if (allowAsi ? this.isLineTerminator() : this.eat(13)) return;\n    this.raise(Errors.MissingSemicolon, this.state.lastTokEndLoc);\n  }\n  expect(type, loc) {\n    if (!this.eat(type)) {\n      this.unexpected(loc, type);\n    }\n  }\n  tryParse(fn, oldState = this.state.clone()) {\n    const abortSignal = {\n      node: null\n    };\n    try {\n      const node = fn((node = null) => {\n        abortSignal.node = node;\n        throw abortSignal;\n      });\n      if (this.state.errors.length > oldState.errors.length) {\n        const failState = this.state;\n        this.state = oldState;\n        this.state.tokensLength = failState.tokensLength;\n        return {\n          node,\n          error: failState.errors[oldState.errors.length],\n          thrown: false,\n          aborted: false,\n          failState\n        };\n      }\n      return {\n        node: node,\n        error: null,\n        thrown: false,\n        aborted: false,\n        failState: null\n      };\n    } catch (error) {\n      const failState = this.state;\n      this.state = oldState;\n      if (error instanceof SyntaxError) {\n        return {\n          node: null,\n          error,\n          thrown: true,\n          aborted: false,\n          failState\n        };\n      }\n      if (error === abortSignal) {\n        return {\n          node: abortSignal.node,\n          error: null,\n          thrown: false,\n          aborted: true,\n          failState\n        };\n      }\n      throw error;\n    }\n  }\n  checkExpressionErrors(refExpressionErrors, andThrow) {\n    if (!refExpressionErrors) return false;\n    const {\n      shorthandAssignLoc,\n      doubleProtoLoc,\n      privateKeyLoc,\n      optionalParametersLoc,\n      voidPatternLoc\n    } = refExpressionErrors;\n    const hasErrors = !!shorthandAssignLoc || !!doubleProtoLoc || !!optionalParametersLoc || !!privateKeyLoc || !!voidPatternLoc;\n    if (!andThrow) {\n      return hasErrors;\n    }\n    if (shorthandAssignLoc != null) {\n      this.raise(Errors.InvalidCoverInitializedName, shorthandAssignLoc);\n    }\n    if (doubleProtoLoc != null) {\n      this.raise(Errors.DuplicateProto, doubleProtoLoc);\n    }\n    if (privateKeyLoc != null) {\n      this.raise(Errors.UnexpectedPrivateField, privateKeyLoc);\n    }\n    if (optionalParametersLoc != null) {\n      this.unexpected(optionalParametersLoc);\n    }\n    if (voidPatternLoc != null) {\n      this.raise(Errors.InvalidCoverDiscardElement, voidPatternLoc);\n    }\n  }\n  isLiteralPropertyName() {\n    return tokenIsLiteralPropertyName(this.state.type);\n  }\n  isPrivateName(node) {\n    return node.type === \"PrivateName\";\n  }\n  getPrivateNameSV(node) {\n    return node.id.name;\n  }\n  hasPropertyAsPrivateName(node) {\n    return (node.type === \"MemberExpression\" || node.type === \"OptionalMemberExpression\") && this.isPrivateName(node.property);\n  }\n  isObjectProperty(node) {\n    return node.type === \"ObjectProperty\";\n  }\n  isObjectMethod(node) {\n    return node.type === \"ObjectMethod\";\n  }\n  initializeScopes(inModule = this.options.sourceType === \"module\") {\n    const oldLabels = this.state.labels;\n    this.state.labels = [];\n    const oldExportedIdentifiers = this.exportedIdentifiers;\n    this.exportedIdentifiers = new Set();\n    const oldInModule = this.inModule;\n    this.inModule = inModule;\n    const oldScope = this.scope;\n    const ScopeHandler = this.getScopeHandler();\n    this.scope = new ScopeHandler(this, inModule);\n    const oldProdParam = this.prodParam;\n    this.prodParam = new ProductionParameterHandler();\n    const oldClassScope = this.classScope;\n    this.classScope = new ClassScopeHandler(this);\n    const oldExpressionScope = this.expressionScope;\n    this.expressionScope = new ExpressionScopeHandler(this);\n    return () => {\n      this.state.labels = oldLabels;\n      this.exportedIdentifiers = oldExportedIdentifiers;\n      this.inModule = oldInModule;\n      this.scope = oldScope;\n      this.prodParam = oldProdParam;\n      this.classScope = oldClassScope;\n      this.expressionScope = oldExpressionScope;\n    };\n  }\n  enterInitialScopes() {\n    let paramFlags = 0;\n    if (this.inModule || this.optionFlags & 1) {\n      paramFlags |= 2;\n    }\n    if (this.optionFlags & 32) {\n      paramFlags |= 1;\n    }\n    const isCommonJS = !this.inModule && this.options.sourceType === \"commonjs\";\n    if (isCommonJS || this.optionFlags & 2) {\n      paramFlags |= 4;\n    }\n    this.prodParam.enter(paramFlags);\n    let scopeFlags = isCommonJS ? 514 : 1;\n    if (this.optionFlags & 4) {\n      scopeFlags |= 512;\n    }\n    this.scope.enter(scopeFlags);\n  }\n  checkDestructuringPrivate(refExpressionErrors) {\n    const {\n      privateKeyLoc\n    } = refExpressionErrors;\n    if (privateKeyLoc !== null) {\n      this.expectPlugin(\"destructuringPrivate\", privateKeyLoc);\n    }\n  }\n}\nclass ExpressionErrors {\n  constructor() {\n    this.shorthandAssignLoc = null;\n    this.doubleProtoLoc = null;\n    this.privateKeyLoc = null;\n    this.optionalParametersLoc = null;\n    this.voidPatternLoc = null;\n  }\n}\nclass Node {\n  constructor(parser, pos, loc) {\n    this.type = \"\";\n    this.start = pos;\n    this.end = 0;\n    this.loc = new SourceLocation(loc);\n    if ((parser == null ? void 0 : parser.optionFlags) & 128) this.range = [pos, 0];\n    if (parser != null && parser.filename) this.loc.filename = parser.filename;\n  }\n}\nconst NodePrototype = Node.prototype;\n{\n  NodePrototype.__clone = function () {\n    const newNode = new Node(undefined, this.start, this.loc.start);\n    const keys = Object.keys(this);\n    for (let i = 0, length = keys.length; i < length; i++) {\n      const key = keys[i];\n      if (key !== \"leadingComments\" && key !== \"trailingComments\" && key !== \"innerComments\") {\n        newNode[key] = this[key];\n      }\n    }\n    return newNode;\n  };\n}\nclass NodeUtils extends UtilParser {\n  startNode() {\n    const loc = this.state.startLoc;\n    return new Node(this, loc.index, loc);\n  }\n  startNodeAt(loc) {\n    return new Node(this, loc.index, loc);\n  }\n  startNodeAtNode(type) {\n    return this.startNodeAt(type.loc.start);\n  }\n  finishNode(node, type) {\n    return this.finishNodeAt(node, type, this.state.lastTokEndLoc);\n  }\n  finishNodeAt(node, type, endLoc) {\n    node.type = type;\n    node.end = endLoc.index;\n    node.loc.end = endLoc;\n    if (this.optionFlags & 128) node.range[1] = endLoc.index;\n    if (this.optionFlags & 4096) {\n      this.processComment(node);\n    }\n    return node;\n  }\n  resetStartLocation(node, startLoc) {\n    node.start = startLoc.index;\n    node.loc.start = startLoc;\n    if (this.optionFlags & 128) node.range[0] = startLoc.index;\n  }\n  resetEndLocation(node, endLoc = this.state.lastTokEndLoc) {\n    node.end = endLoc.index;\n    node.loc.end = endLoc;\n    if (this.optionFlags & 128) node.range[1] = endLoc.index;\n  }\n  resetStartLocationFromNode(node, locationNode) {\n    this.resetStartLocation(node, locationNode.loc.start);\n  }\n  castNodeTo(node, type) {\n    node.type = type;\n    return node;\n  }\n  cloneIdentifier(node) {\n    const {\n      type,\n      start,\n      end,\n      loc,\n      range,\n      name\n    } = node;\n    const cloned = Object.create(NodePrototype);\n    cloned.type = type;\n    cloned.start = start;\n    cloned.end = end;\n    cloned.loc = loc;\n    cloned.range = range;\n    cloned.name = name;\n    if (node.extra) cloned.extra = node.extra;\n    return cloned;\n  }\n  cloneStringLiteral(node) {\n    const {\n      type,\n      start,\n      end,\n      loc,\n      range,\n      extra\n    } = node;\n    const cloned = Object.create(NodePrototype);\n    cloned.type = type;\n    cloned.start = start;\n    cloned.end = end;\n    cloned.loc = loc;\n    cloned.range = range;\n    cloned.extra = extra;\n    cloned.value = node.value;\n    return cloned;\n  }\n}\nconst unwrapParenthesizedExpression = node => {\n  return node.type === \"ParenthesizedExpression\" ? unwrapParenthesizedExpression(node.expression) : node;\n};\nclass LValParser extends NodeUtils {\n  toAssignable(node, isLHS = false) {\n    var _node$extra, _node$extra3;\n    let parenthesized = undefined;\n    if (node.type === \"ParenthesizedExpression\" || (_node$extra = node.extra) != null && _node$extra.parenthesized) {\n      parenthesized = unwrapParenthesizedExpression(node);\n      if (isLHS) {\n        if (parenthesized.type === \"Identifier\") {\n          this.expressionScope.recordArrowParameterBindingError(Errors.InvalidParenthesizedAssignment, node);\n        } else if (parenthesized.type !== \"CallExpression\" && parenthesized.type !== \"MemberExpression\" && !this.isOptionalMemberExpression(parenthesized)) {\n          this.raise(Errors.InvalidParenthesizedAssignment, node);\n        }\n      } else {\n        this.raise(Errors.InvalidParenthesizedAssignment, node);\n      }\n    }\n    switch (node.type) {\n      case \"Identifier\":\n      case \"ObjectPattern\":\n      case \"ArrayPattern\":\n      case \"AssignmentPattern\":\n      case \"RestElement\":\n      case \"VoidPattern\":\n        break;\n      case \"ObjectExpression\":\n        this.castNodeTo(node, \"ObjectPattern\");\n        for (let i = 0, length = node.properties.length, last = length - 1; i < length; i++) {\n          var _node$extra2;\n          const prop = node.properties[i];\n          const isLast = i === last;\n          this.toAssignableObjectExpressionProp(prop, isLast, isLHS);\n          if (isLast && prop.type === \"RestElement\" && (_node$extra2 = node.extra) != null && _node$extra2.trailingCommaLoc) {\n            this.raise(Errors.RestTrailingComma, node.extra.trailingCommaLoc);\n          }\n        }\n        break;\n      case \"ObjectProperty\":\n        {\n          const {\n            key,\n            value\n          } = node;\n          if (this.isPrivateName(key)) {\n            this.classScope.usePrivateName(this.getPrivateNameSV(key), key.loc.start);\n          }\n          this.toAssignable(value, isLHS);\n          break;\n        }\n      case \"SpreadElement\":\n        {\n          throw new Error(\"Internal @babel/parser error (this is a bug, please report it).\" + \" SpreadElement should be converted by .toAssignable's caller.\");\n        }\n      case \"ArrayExpression\":\n        this.castNodeTo(node, \"ArrayPattern\");\n        this.toAssignableList(node.elements, (_node$extra3 = node.extra) == null ? void 0 : _node$extra3.trailingCommaLoc, isLHS);\n        break;\n      case \"AssignmentExpression\":\n        if (node.operator !== \"=\") {\n          this.raise(Errors.MissingEqInAssignment, node.left.loc.end);\n        }\n        this.castNodeTo(node, \"AssignmentPattern\");\n        delete node.operator;\n        if (node.left.type === \"VoidPattern\") {\n          this.raise(Errors.VoidPatternInitializer, node.left);\n        }\n        this.toAssignable(node.left, isLHS);\n        break;\n      case \"ParenthesizedExpression\":\n        this.toAssignable(parenthesized, isLHS);\n        break;\n    }\n  }\n  toAssignableObjectExpressionProp(prop, isLast, isLHS) {\n    if (prop.type === \"ObjectMethod\") {\n      this.raise(prop.kind === \"get\" || prop.kind === \"set\" ? Errors.PatternHasAccessor : Errors.PatternHasMethod, prop.key);\n    } else if (prop.type === \"SpreadElement\") {\n      this.castNodeTo(prop, \"RestElement\");\n      const arg = prop.argument;\n      this.checkToRestConversion(arg, false);\n      this.toAssignable(arg, isLHS);\n      if (!isLast) {\n        this.raise(Errors.RestTrailingComma, prop);\n      }\n    } else {\n      this.toAssignable(prop, isLHS);\n    }\n  }\n  toAssignableList(exprList, trailingCommaLoc, isLHS) {\n    const end = exprList.length - 1;\n    for (let i = 0; i <= end; i++) {\n      const elt = exprList[i];\n      if (!elt) continue;\n      this.toAssignableListItem(exprList, i, isLHS);\n      if (elt.type === \"RestElement\") {\n        if (i < end) {\n          this.raise(Errors.RestTrailingComma, elt);\n        } else if (trailingCommaLoc) {\n          this.raise(Errors.RestTrailingComma, trailingCommaLoc);\n        }\n      }\n    }\n  }\n  toAssignableListItem(exprList, index, isLHS) {\n    const node = exprList[index];\n    if (node.type === \"SpreadElement\") {\n      this.castNodeTo(node, \"RestElement\");\n      const arg = node.argument;\n      this.checkToRestConversion(arg, true);\n      this.toAssignable(arg, isLHS);\n    } else {\n      this.toAssignable(node, isLHS);\n    }\n  }\n  isAssignable(node, isBinding) {\n    switch (node.type) {\n      case \"Identifier\":\n      case \"ObjectPattern\":\n      case \"ArrayPattern\":\n      case \"AssignmentPattern\":\n      case \"RestElement\":\n      case \"VoidPattern\":\n        return true;\n      case \"ObjectExpression\":\n        {\n          const last = node.properties.length - 1;\n          return node.properties.every((prop, i) => {\n            return prop.type !== \"ObjectMethod\" && (i === last || prop.type !== \"SpreadElement\") && this.isAssignable(prop);\n          });\n        }\n      case \"ObjectProperty\":\n        return this.isAssignable(node.value);\n      case \"SpreadElement\":\n        return this.isAssignable(node.argument);\n      case \"ArrayExpression\":\n        return node.elements.every(element => element === null || this.isAssignable(element));\n      case \"AssignmentExpression\":\n        return node.operator === \"=\";\n      case \"ParenthesizedExpression\":\n        return this.isAssignable(node.expression);\n      case \"MemberExpression\":\n      case \"OptionalMemberExpression\":\n        return !isBinding;\n      default:\n        return false;\n    }\n  }\n  toReferencedList(exprList, isParenthesizedExpr) {\n    return exprList;\n  }\n  toReferencedListDeep(exprList, isParenthesizedExpr) {\n    this.toReferencedList(exprList, isParenthesizedExpr);\n    for (const expr of exprList) {\n      if ((expr == null ? void 0 : expr.type) === \"ArrayExpression\") {\n        this.toReferencedListDeep(expr.elements);\n      }\n    }\n  }\n  parseSpread(refExpressionErrors) {\n    const node = this.startNode();\n    this.next();\n    node.argument = this.parseMaybeAssignAllowIn(refExpressionErrors, undefined);\n    return this.finishNode(node, \"SpreadElement\");\n  }\n  parseRestBinding() {\n    const node = this.startNode();\n    this.next();\n    const argument = this.parseBindingAtom();\n    if (argument.type === \"VoidPattern\") {\n      this.raise(Errors.UnexpectedVoidPattern, argument);\n    }\n    node.argument = argument;\n    return this.finishNode(node, \"RestElement\");\n  }\n  parseBindingAtom() {\n    switch (this.state.type) {\n      case 0:\n        {\n          const node = this.startNode();\n          this.next();\n          node.elements = this.parseBindingList(3, 93, 1);\n          return this.finishNode(node, \"ArrayPattern\");\n        }\n      case 5:\n        return this.parseObjectLike(8, true);\n      case 88:\n        return this.parseVoidPattern(null);\n    }\n    return this.parseIdentifier();\n  }\n  parseBindingList(close, closeCharCode, flags) {\n    const allowEmpty = flags & 1;\n    const elts = [];\n    let first = true;\n    while (!this.eat(close)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12);\n      }\n      if (allowEmpty && this.match(12)) {\n        elts.push(null);\n      } else if (this.eat(close)) {\n        break;\n      } else if (this.match(21)) {\n        let rest = this.parseRestBinding();\n        if (this.hasPlugin(\"flow\") || flags & 2) {\n          rest = this.parseFunctionParamType(rest);\n        }\n        elts.push(rest);\n        if (!this.checkCommaAfterRest(closeCharCode)) {\n          this.expect(close);\n          break;\n        }\n      } else {\n        const decorators = [];\n        if (flags & 2) {\n          if (this.match(26) && this.hasPlugin(\"decorators\")) {\n            this.raise(Errors.UnsupportedParameterDecorator, this.state.startLoc);\n          }\n          while (this.match(26)) {\n            decorators.push(this.parseDecorator());\n          }\n        }\n        elts.push(this.parseBindingElement(flags, decorators));\n      }\n    }\n    return elts;\n  }\n  parseBindingRestProperty(prop) {\n    this.next();\n    if (this.hasPlugin(\"discardBinding\") && this.match(88)) {\n      prop.argument = this.parseVoidPattern(null);\n      this.raise(Errors.UnexpectedVoidPattern, prop.argument);\n    } else {\n      prop.argument = this.parseIdentifier();\n    }\n    this.checkCommaAfterRest(125);\n    return this.finishNode(prop, \"RestElement\");\n  }\n  parseBindingProperty() {\n    const {\n      type,\n      startLoc\n    } = this.state;\n    if (type === 21) {\n      return this.parseBindingRestProperty(this.startNode());\n    }\n    const prop = this.startNode();\n    if (type === 139) {\n      this.expectPlugin(\"destructuringPrivate\", startLoc);\n      this.classScope.usePrivateName(this.state.value, startLoc);\n      prop.key = this.parsePrivateName();\n    } else {\n      this.parsePropertyName(prop);\n    }\n    prop.method = false;\n    return this.parseObjPropValue(prop, startLoc, false, false, true, false);\n  }\n  parseBindingElement(flags, decorators) {\n    const left = this.parseMaybeDefault();\n    if (this.hasPlugin(\"flow\") || flags & 2) {\n      this.parseFunctionParamType(left);\n    }\n    if (decorators.length) {\n      left.decorators = decorators;\n      this.resetStartLocationFromNode(left, decorators[0]);\n    }\n    const elt = this.parseMaybeDefault(left.loc.start, left);\n    return elt;\n  }\n  parseFunctionParamType(param) {\n    return param;\n  }\n  parseMaybeDefault(startLoc, left) {\n    startLoc != null ? startLoc : startLoc = this.state.startLoc;\n    left = left != null ? left : this.parseBindingAtom();\n    if (!this.eat(29)) return left;\n    const node = this.startNodeAt(startLoc);\n    if (left.type === \"VoidPattern\") {\n      this.raise(Errors.VoidPatternInitializer, left);\n    }\n    node.left = left;\n    node.right = this.parseMaybeAssignAllowIn();\n    return this.finishNode(node, \"AssignmentPattern\");\n  }\n  isValidLVal(type, disallowCallExpression, isUnparenthesizedInAssign, binding) {\n    switch (type) {\n      case \"AssignmentPattern\":\n        return \"left\";\n      case \"RestElement\":\n        return \"argument\";\n      case \"ObjectProperty\":\n        return \"value\";\n      case \"ParenthesizedExpression\":\n        return \"expression\";\n      case \"ArrayPattern\":\n        return \"elements\";\n      case \"ObjectPattern\":\n        return \"properties\";\n      case \"VoidPattern\":\n        return true;\n      case \"CallExpression\":\n        if (!disallowCallExpression && !this.state.strict && this.optionFlags & 8192) {\n          return true;\n        }\n    }\n    return false;\n  }\n  isOptionalMemberExpression(expression) {\n    return expression.type === \"OptionalMemberExpression\";\n  }\n  checkLVal(expression, ancestor, binding = 64, checkClashes = false, strictModeChanged = false, hasParenthesizedAncestor = false, disallowCallExpression = false) {\n    var _expression$extra;\n    const type = expression.type;\n    if (this.isObjectMethod(expression)) return;\n    const isOptionalMemberExpression = this.isOptionalMemberExpression(expression);\n    if (isOptionalMemberExpression || type === \"MemberExpression\") {\n      if (isOptionalMemberExpression) {\n        this.expectPlugin(\"optionalChainingAssign\", expression.loc.start);\n        if (ancestor.type !== \"AssignmentExpression\") {\n          this.raise(Errors.InvalidLhsOptionalChaining, expression, {\n            ancestor\n          });\n        }\n      }\n      if (binding !== 64) {\n        this.raise(Errors.InvalidPropertyBindingPattern, expression);\n      }\n      return;\n    }\n    if (type === \"Identifier\") {\n      this.checkIdentifier(expression, binding, strictModeChanged);\n      const {\n        name\n      } = expression;\n      if (checkClashes) {\n        if (checkClashes.has(name)) {\n          this.raise(Errors.ParamDupe, expression);\n        } else {\n          checkClashes.add(name);\n        }\n      }\n      return;\n    } else if (type === \"VoidPattern\" && ancestor.type === \"CatchClause\") {\n      this.raise(Errors.VoidPatternCatchClauseParam, expression);\n    }\n    const unwrappedExpression = unwrapParenthesizedExpression(expression);\n    disallowCallExpression || (disallowCallExpression = unwrappedExpression.type === \"CallExpression\" && (unwrappedExpression.callee.type === \"Import\" || unwrappedExpression.callee.type === \"Super\"));\n    const validity = this.isValidLVal(type, disallowCallExpression, !(hasParenthesizedAncestor || (_expression$extra = expression.extra) != null && _expression$extra.parenthesized) && ancestor.type === \"AssignmentExpression\", binding);\n    if (validity === true) return;\n    if (validity === false) {\n      const ParseErrorClass = binding === 64 ? Errors.InvalidLhs : Errors.InvalidLhsBinding;\n      this.raise(ParseErrorClass, expression, {\n        ancestor\n      });\n      return;\n    }\n    let key, isParenthesizedExpression;\n    if (typeof validity === \"string\") {\n      key = validity;\n      isParenthesizedExpression = type === \"ParenthesizedExpression\";\n    } else {\n      [key, isParenthesizedExpression] = validity;\n    }\n    const nextAncestor = type === \"ArrayPattern\" || type === \"ObjectPattern\" ? {\n      type\n    } : ancestor;\n    const val = expression[key];\n    if (Array.isArray(val)) {\n      for (const child of val) {\n        if (child) {\n          this.checkLVal(child, nextAncestor, binding, checkClashes, strictModeChanged, isParenthesizedExpression, true);\n        }\n      }\n    } else if (val) {\n      this.checkLVal(val, nextAncestor, binding, checkClashes, strictModeChanged, isParenthesizedExpression, disallowCallExpression);\n    }\n  }\n  checkIdentifier(at, bindingType, strictModeChanged = false) {\n    if (this.state.strict && (strictModeChanged ? isStrictBindReservedWord(at.name, this.inModule) : isStrictBindOnlyReservedWord(at.name))) {\n      if (bindingType === 64) {\n        this.raise(Errors.StrictEvalArguments, at, {\n          referenceName: at.name\n        });\n      } else {\n        this.raise(Errors.StrictEvalArgumentsBinding, at, {\n          bindingName: at.name\n        });\n      }\n    }\n    if (bindingType & 8192 && at.name === \"let\") {\n      this.raise(Errors.LetInLexicalBinding, at);\n    }\n    if (!(bindingType & 64)) {\n      this.declareNameFromIdentifier(at, bindingType);\n    }\n  }\n  declareNameFromIdentifier(identifier, binding) {\n    this.scope.declareName(identifier.name, binding, identifier.loc.start);\n  }\n  checkToRestConversion(node, allowPattern) {\n    switch (node.type) {\n      case \"ParenthesizedExpression\":\n        this.checkToRestConversion(node.expression, allowPattern);\n        break;\n      case \"Identifier\":\n      case \"MemberExpression\":\n        break;\n      case \"ArrayExpression\":\n      case \"ObjectExpression\":\n        if (allowPattern) break;\n      default:\n        this.raise(Errors.InvalidRestAssignmentPattern, node);\n    }\n  }\n  checkCommaAfterRest(close) {\n    if (!this.match(12)) {\n      return false;\n    }\n    this.raise(this.lookaheadCharCode() === close ? Errors.RestTrailingComma : Errors.ElementAfterRest, this.state.startLoc);\n    return true;\n  }\n}\nconst keywordAndTSRelationalOperator = /in(?:stanceof)?|as|satisfies/y;\nfunction nonNull(x) {\n  if (x == null) {\n    throw new Error(`Unexpected ${x} value.`);\n  }\n  return x;\n}\nfunction assert(x) {\n  if (!x) {\n    throw new Error(\"Assert fail\");\n  }\n}\nconst TSErrors = ParseErrorEnum`typescript`({\n  AbstractMethodHasImplementation: ({\n    methodName\n  }) => `Method '${methodName}' cannot have an implementation because it is marked abstract.`,\n  AbstractPropertyHasInitializer: ({\n    propertyName\n  }) => `Property '${propertyName}' cannot have an initializer because it is marked abstract.`,\n  AccessorCannotBeOptional: \"An 'accessor' property cannot be declared optional.\",\n  AccessorCannotDeclareThisParameter: \"'get' and 'set' accessors cannot declare 'this' parameters.\",\n  AccessorCannotHaveTypeParameters: \"An accessor cannot have type parameters.\",\n  ClassMethodHasDeclare: \"Class methods cannot have the 'declare' modifier.\",\n  ClassMethodHasReadonly: \"Class methods cannot have the 'readonly' modifier.\",\n  ConstInitializerMustBeStringOrNumericLiteralOrLiteralEnumReference: \"A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference.\",\n  ConstructorHasTypeParameters: \"Type parameters cannot appear on a constructor declaration.\",\n  DeclareAccessor: ({\n    kind\n  }) => `'declare' is not allowed in ${kind}ters.`,\n  DeclareClassFieldHasInitializer: \"Initializers are not allowed in ambient contexts.\",\n  DeclareFunctionHasImplementation: \"An implementation cannot be declared in ambient contexts.\",\n  DuplicateAccessibilityModifier: ({\n    modifier\n  }) => `Accessibility modifier already seen: '${modifier}'.`,\n  DuplicateModifier: ({\n    modifier\n  }) => `Duplicate modifier: '${modifier}'.`,\n  EmptyHeritageClauseType: ({\n    token\n  }) => `'${token}' list cannot be empty.`,\n  EmptyTypeArguments: \"Type argument list cannot be empty.\",\n  EmptyTypeParameters: \"Type parameter list cannot be empty.\",\n  ExpectedAmbientAfterExportDeclare: \"'export declare' must be followed by an ambient declaration.\",\n  ImportAliasHasImportType: \"An import alias can not use 'import type'.\",\n  ImportReflectionHasImportType: \"An `import module` declaration can not use `type` modifier\",\n  IncompatibleModifiers: ({\n    modifiers\n  }) => `'${modifiers[0]}' modifier cannot be used with '${modifiers[1]}' modifier.`,\n  IndexSignatureHasAbstract: \"Index signatures cannot have the 'abstract' modifier.\",\n  IndexSignatureHasAccessibility: ({\n    modifier\n  }) => `Index signatures cannot have an accessibility modifier ('${modifier}').`,\n  IndexSignatureHasDeclare: \"Index signatures cannot have the 'declare' modifier.\",\n  IndexSignatureHasOverride: \"'override' modifier cannot appear on an index signature.\",\n  IndexSignatureHasStatic: \"Index signatures cannot have the 'static' modifier.\",\n  InitializerNotAllowedInAmbientContext: \"Initializers are not allowed in ambient contexts.\",\n  InvalidHeritageClauseType: ({\n    token\n  }) => `'${token}' list can only include identifiers or qualified-names with optional type arguments.`,\n  InvalidModifierOnAwaitUsingDeclaration: modifier => `'${modifier}' modifier cannot appear on an await using declaration.`,\n  InvalidModifierOnTypeMember: ({\n    modifier\n  }) => `'${modifier}' modifier cannot appear on a type member.`,\n  InvalidModifierOnTypeParameter: ({\n    modifier\n  }) => `'${modifier}' modifier cannot appear on a type parameter.`,\n  InvalidModifierOnTypeParameterPositions: ({\n    modifier\n  }) => `'${modifier}' modifier can only appear on a type parameter of a class, interface or type alias.`,\n  InvalidModifierOnUsingDeclaration: modifier => `'${modifier}' modifier cannot appear on a using declaration.`,\n  InvalidModifiersOrder: ({\n    orderedModifiers\n  }) => `'${orderedModifiers[0]}' modifier must precede '${orderedModifiers[1]}' modifier.`,\n  InvalidPropertyAccessAfterInstantiationExpression: \"Invalid property access after an instantiation expression. \" + \"You can either wrap the instantiation expression in parentheses, or delete the type arguments.\",\n  InvalidTupleMemberLabel: \"Tuple members must be labeled with a simple identifier.\",\n  MissingInterfaceName: \"'interface' declarations must be followed by an identifier.\",\n  NonAbstractClassHasAbstractMethod: \"Abstract methods can only appear within an abstract class.\",\n  NonClassMethodPropertyHasAbstractModifier: \"'abstract' modifier can only appear on a class, method, or property declaration.\",\n  OptionalTypeBeforeRequired: \"A required element cannot follow an optional element.\",\n  OverrideNotInSubClass: \"This member cannot have an 'override' modifier because its containing class does not extend another class.\",\n  PatternIsOptional: \"A binding pattern parameter cannot be optional in an implementation signature.\",\n  PrivateElementHasAbstract: \"Private elements cannot have the 'abstract' modifier.\",\n  PrivateElementHasAccessibility: ({\n    modifier\n  }) => `Private elements cannot have an accessibility modifier ('${modifier}').`,\n  ReadonlyForMethodSignature: \"'readonly' modifier can only appear on a property declaration or index signature.\",\n  ReservedArrowTypeParam: \"This syntax is reserved in files with the .mts or .cts extension. Add a trailing comma, as in `<T,>() => ...`.\",\n  ReservedTypeAssertion: \"This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead.\",\n  SetAccessorCannotHaveOptionalParameter: \"A 'set' accessor cannot have an optional parameter.\",\n  SetAccessorCannotHaveRestParameter: \"A 'set' accessor cannot have rest parameter.\",\n  SetAccessorCannotHaveReturnType: \"A 'set' accessor cannot have a return type annotation.\",\n  SingleTypeParameterWithoutTrailingComma: ({\n    typeParameterName\n  }) => `Single type parameter ${typeParameterName} should have a trailing comma. Example usage: <${typeParameterName},>.`,\n  StaticBlockCannotHaveModifier: \"Static class blocks cannot have any modifier.\",\n  TupleOptionalAfterType: \"A labeled tuple optional element must be declared using a question mark after the name and before the colon (`name?: type`), rather than after the type (`name: type?`).\",\n  TypeAnnotationAfterAssign: \"Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`.\",\n  TypeImportCannotSpecifyDefaultAndNamed: \"A type-only import can specify a default import or named bindings, but not both.\",\n  TypeModifierIsUsedInTypeExports: \"The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement.\",\n  TypeModifierIsUsedInTypeImports: \"The 'type' modifier cannot be used on a named import when 'import type' is used on its import statement.\",\n  UnexpectedParameterModifier: \"A parameter property is only allowed in a constructor implementation.\",\n  UnexpectedReadonly: \"'readonly' type modifier is only permitted on array and tuple literal types.\",\n  UnexpectedTypeAnnotation: \"Did not expect a type annotation here.\",\n  UnexpectedTypeCastInParameter: \"Unexpected type cast in parameter position.\",\n  UnsupportedImportTypeArgument: \"Argument in a type import must be a string literal.\",\n  UnsupportedParameterPropertyKind: \"A parameter property may not be declared using a binding pattern.\",\n  UnsupportedSignatureParameterKind: ({\n    type\n  }) => `Name in a signature must be an Identifier, ObjectPattern or ArrayPattern, instead got ${type}.`,\n  UsingDeclarationInAmbientContext: kind => `'${kind}' declarations are not allowed in ambient contexts.`\n});\nfunction keywordTypeFromName(value) {\n  switch (value) {\n    case \"any\":\n      return \"TSAnyKeyword\";\n    case \"boolean\":\n      return \"TSBooleanKeyword\";\n    case \"bigint\":\n      return \"TSBigIntKeyword\";\n    case \"never\":\n      return \"TSNeverKeyword\";\n    case \"number\":\n      return \"TSNumberKeyword\";\n    case \"object\":\n      return \"TSObjectKeyword\";\n    case \"string\":\n      return \"TSStringKeyword\";\n    case \"symbol\":\n      return \"TSSymbolKeyword\";\n    case \"undefined\":\n      return \"TSUndefinedKeyword\";\n    case \"unknown\":\n      return \"TSUnknownKeyword\";\n    default:\n      return undefined;\n  }\n}\nfunction tsIsAccessModifier(modifier) {\n  return modifier === \"private\" || modifier === \"public\" || modifier === \"protected\";\n}\nfunction tsIsVarianceAnnotations(modifier) {\n  return modifier === \"in\" || modifier === \"out\";\n}\nvar typescript = superClass => class TypeScriptParserMixin extends superClass {\n  constructor(...args) {\n    super(...args);\n    this.tsParseInOutModifiers = this.tsParseModifiers.bind(this, {\n      allowedModifiers: [\"in\", \"out\"],\n      disallowedModifiers: [\"const\", \"public\", \"private\", \"protected\", \"readonly\", \"declare\", \"abstract\", \"override\"],\n      errorTemplate: TSErrors.InvalidModifierOnTypeParameter\n    });\n    this.tsParseConstModifier = this.tsParseModifiers.bind(this, {\n      allowedModifiers: [\"const\"],\n      disallowedModifiers: [\"in\", \"out\"],\n      errorTemplate: TSErrors.InvalidModifierOnTypeParameterPositions\n    });\n    this.tsParseInOutConstModifiers = this.tsParseModifiers.bind(this, {\n      allowedModifiers: [\"in\", \"out\", \"const\"],\n      disallowedModifiers: [\"public\", \"private\", \"protected\", \"readonly\", \"declare\", \"abstract\", \"override\"],\n      errorTemplate: TSErrors.InvalidModifierOnTypeParameter\n    });\n  }\n  getScopeHandler() {\n    return TypeScriptScopeHandler;\n  }\n  tsIsIdentifier() {\n    return tokenIsIdentifier(this.state.type);\n  }\n  tsTokenCanFollowModifier() {\n    return this.match(0) || this.match(5) || this.match(55) || this.match(21) || this.match(139) || this.isLiteralPropertyName();\n  }\n  tsNextTokenOnSameLineAndCanFollowModifier() {\n    this.next();\n    if (this.hasPrecedingLineBreak()) {\n      return false;\n    }\n    return this.tsTokenCanFollowModifier();\n  }\n  tsNextTokenCanFollowModifier() {\n    if (this.match(106)) {\n      this.next();\n      return this.tsTokenCanFollowModifier();\n    }\n    return this.tsNextTokenOnSameLineAndCanFollowModifier();\n  }\n  tsParseModifier(allowedModifiers, stopOnStartOfClassStaticBlock, hasSeenStaticModifier) {\n    if (!tokenIsIdentifier(this.state.type) && this.state.type !== 58 && this.state.type !== 75) {\n      return undefined;\n    }\n    const modifier = this.state.value;\n    if (allowedModifiers.includes(modifier)) {\n      if (hasSeenStaticModifier && this.match(106)) {\n        return undefined;\n      }\n      if (stopOnStartOfClassStaticBlock && this.tsIsStartOfStaticBlocks()) {\n        return undefined;\n      }\n      if (this.tsTryParse(this.tsNextTokenCanFollowModifier.bind(this))) {\n        return modifier;\n      }\n    }\n    return undefined;\n  }\n  tsParseModifiers({\n    allowedModifiers,\n    disallowedModifiers,\n    stopOnStartOfClassStaticBlock,\n    errorTemplate = TSErrors.InvalidModifierOnTypeMember\n  }, modified) {\n    const enforceOrder = (loc, modifier, before, after) => {\n      if (modifier === before && modified[after]) {\n        this.raise(TSErrors.InvalidModifiersOrder, loc, {\n          orderedModifiers: [before, after]\n        });\n      }\n    };\n    const incompatible = (loc, modifier, mod1, mod2) => {\n      if (modified[mod1] && modifier === mod2 || modified[mod2] && modifier === mod1) {\n        this.raise(TSErrors.IncompatibleModifiers, loc, {\n          modifiers: [mod1, mod2]\n        });\n      }\n    };\n    for (;;) {\n      const {\n        startLoc\n      } = this.state;\n      const modifier = this.tsParseModifier(allowedModifiers.concat(disallowedModifiers != null ? disallowedModifiers : []), stopOnStartOfClassStaticBlock, modified.static);\n      if (!modifier) break;\n      if (tsIsAccessModifier(modifier)) {\n        if (modified.accessibility) {\n          this.raise(TSErrors.DuplicateAccessibilityModifier, startLoc, {\n            modifier\n          });\n        } else {\n          enforceOrder(startLoc, modifier, modifier, \"override\");\n          enforceOrder(startLoc, modifier, modifier, \"static\");\n          enforceOrder(startLoc, modifier, modifier, \"readonly\");\n          modified.accessibility = modifier;\n        }\n      } else if (tsIsVarianceAnnotations(modifier)) {\n        if (modified[modifier]) {\n          this.raise(TSErrors.DuplicateModifier, startLoc, {\n            modifier\n          });\n        }\n        modified[modifier] = true;\n        enforceOrder(startLoc, modifier, \"in\", \"out\");\n      } else {\n        if (hasOwnProperty.call(modified, modifier)) {\n          this.raise(TSErrors.DuplicateModifier, startLoc, {\n            modifier\n          });\n        } else {\n          enforceOrder(startLoc, modifier, \"static\", \"readonly\");\n          enforceOrder(startLoc, modifier, \"static\", \"override\");\n          enforceOrder(startLoc, modifier, \"override\", \"readonly\");\n          enforceOrder(startLoc, modifier, \"abstract\", \"override\");\n          incompatible(startLoc, modifier, \"declare\", \"override\");\n          incompatible(startLoc, modifier, \"static\", \"abstract\");\n        }\n        modified[modifier] = true;\n      }\n      if (disallowedModifiers != null && disallowedModifiers.includes(modifier)) {\n        this.raise(errorTemplate, startLoc, {\n          modifier\n        });\n      }\n    }\n  }\n  tsIsListTerminator(kind) {\n    switch (kind) {\n      case \"EnumMembers\":\n      case \"TypeMembers\":\n        return this.match(8);\n      case \"HeritageClauseElement\":\n        return this.match(5);\n      case \"TupleElementTypes\":\n        return this.match(3);\n      case \"TypeParametersOrArguments\":\n        return this.match(48);\n    }\n  }\n  tsParseList(kind, parseElement) {\n    const result = [];\n    while (!this.tsIsListTerminator(kind)) {\n      result.push(parseElement());\n    }\n    return result;\n  }\n  tsParseDelimitedList(kind, parseElement, refTrailingCommaPos) {\n    return nonNull(this.tsParseDelimitedListWorker(kind, parseElement, true, refTrailingCommaPos));\n  }\n  tsParseDelimitedListWorker(kind, parseElement, expectSuccess, refTrailingCommaPos) {\n    const result = [];\n    let trailingCommaPos = -1;\n    for (;;) {\n      if (this.tsIsListTerminator(kind)) {\n        break;\n      }\n      trailingCommaPos = -1;\n      const element = parseElement();\n      if (element == null) {\n        return undefined;\n      }\n      result.push(element);\n      if (this.eat(12)) {\n        trailingCommaPos = this.state.lastTokStartLoc.index;\n        continue;\n      }\n      if (this.tsIsListTerminator(kind)) {\n        break;\n      }\n      if (expectSuccess) {\n        this.expect(12);\n      }\n      return undefined;\n    }\n    if (refTrailingCommaPos) {\n      refTrailingCommaPos.value = trailingCommaPos;\n    }\n    return result;\n  }\n  tsParseBracketedList(kind, parseElement, bracket, skipFirstToken, refTrailingCommaPos) {\n    if (!skipFirstToken) {\n      if (bracket) {\n        this.expect(0);\n      } else {\n        this.expect(47);\n      }\n    }\n    const result = this.tsParseDelimitedList(kind, parseElement, refTrailingCommaPos);\n    if (bracket) {\n      this.expect(3);\n    } else {\n      this.expect(48);\n    }\n    return result;\n  }\n  tsParseImportType() {\n    const node = this.startNode();\n    this.expect(83);\n    this.expect(10);\n    if (!this.match(134)) {\n      this.raise(TSErrors.UnsupportedImportTypeArgument, this.state.startLoc);\n      {\n        node.argument = super.parseExprAtom();\n      }\n    } else {\n      {\n        node.argument = this.parseStringLiteral(this.state.value);\n      }\n    }\n    if (this.eat(12)) {\n      node.options = this.tsParseImportTypeOptions();\n    } else {\n      node.options = null;\n    }\n    this.expect(11);\n    if (this.eat(16)) {\n      node.qualifier = this.tsParseEntityName(1 | 2);\n    }\n    if (this.match(47)) {\n      {\n        node.typeParameters = this.tsParseTypeArguments();\n      }\n    }\n    return this.finishNode(node, \"TSImportType\");\n  }\n  tsParseImportTypeOptions() {\n    const node = this.startNode();\n    this.expect(5);\n    const withProperty = this.startNode();\n    if (this.isContextual(76)) {\n      withProperty.method = false;\n      withProperty.key = this.parseIdentifier(true);\n      withProperty.computed = false;\n      withProperty.shorthand = false;\n    } else {\n      this.unexpected(null, 76);\n    }\n    this.expect(14);\n    withProperty.value = this.tsParseImportTypeWithPropertyValue();\n    node.properties = [this.finishObjectProperty(withProperty)];\n    this.eat(12);\n    this.expect(8);\n    return this.finishNode(node, \"ObjectExpression\");\n  }\n  tsParseImportTypeWithPropertyValue() {\n    const node = this.startNode();\n    const properties = [];\n    this.expect(5);\n    while (!this.match(8)) {\n      const type = this.state.type;\n      if (tokenIsIdentifier(type) || type === 134) {\n        properties.push(super.parsePropertyDefinition(null));\n      } else {\n        this.unexpected();\n      }\n      this.eat(12);\n    }\n    node.properties = properties;\n    this.next();\n    return this.finishNode(node, \"ObjectExpression\");\n  }\n  tsParseEntityName(flags) {\n    let entity;\n    if (flags & 1 && this.match(78)) {\n      if (flags & 2) {\n        entity = this.parseIdentifier(true);\n      } else {\n        const node = this.startNode();\n        this.next();\n        entity = this.finishNode(node, \"ThisExpression\");\n      }\n    } else {\n      entity = this.parseIdentifier(!!(flags & 1));\n    }\n    while (this.eat(16)) {\n      const node = this.startNodeAtNode(entity);\n      node.left = entity;\n      node.right = this.parseIdentifier(!!(flags & 1));\n      entity = this.finishNode(node, \"TSQualifiedName\");\n    }\n    return entity;\n  }\n  tsParseTypeReference() {\n    const node = this.startNode();\n    node.typeName = this.tsParseEntityName(1);\n    if (!this.hasPrecedingLineBreak() && this.match(47)) {\n      {\n        node.typeParameters = this.tsParseTypeArguments();\n      }\n    }\n    return this.finishNode(node, \"TSTypeReference\");\n  }\n  tsParseThisTypePredicate(lhs) {\n    this.next();\n    const node = this.startNodeAtNode(lhs);\n    node.parameterName = lhs;\n    node.typeAnnotation = this.tsParseTypeAnnotation(false);\n    node.asserts = false;\n    return this.finishNode(node, \"TSTypePredicate\");\n  }\n  tsParseThisTypeNode() {\n    const node = this.startNode();\n    this.next();\n    return this.finishNode(node, \"TSThisType\");\n  }\n  tsParseTypeQuery() {\n    const node = this.startNode();\n    this.expect(87);\n    if (this.match(83)) {\n      node.exprName = this.tsParseImportType();\n    } else {\n      {\n        node.exprName = this.tsParseEntityName(1 | 2);\n      }\n    }\n    if (!this.hasPrecedingLineBreak() && this.match(47)) {\n      {\n        node.typeParameters = this.tsParseTypeArguments();\n      }\n    }\n    return this.finishNode(node, \"TSTypeQuery\");\n  }\n  tsParseTypeParameter(parseModifiers) {\n    const node = this.startNode();\n    parseModifiers(node);\n    node.name = this.tsParseTypeParameterName();\n    node.constraint = this.tsEatThenParseType(81);\n    node.default = this.tsEatThenParseType(29);\n    return this.finishNode(node, \"TSTypeParameter\");\n  }\n  tsTryParseTypeParameters(parseModifiers) {\n    if (this.match(47)) {\n      return this.tsParseTypeParameters(parseModifiers);\n    }\n  }\n  tsParseTypeParameters(parseModifiers) {\n    const node = this.startNode();\n    if (this.match(47) || this.match(143)) {\n      this.next();\n    } else {\n      this.unexpected();\n    }\n    const refTrailingCommaPos = {\n      value: -1\n    };\n    node.params = this.tsParseBracketedList(\"TypeParametersOrArguments\", this.tsParseTypeParameter.bind(this, parseModifiers), false, true, refTrailingCommaPos);\n    if (node.params.length === 0) {\n      this.raise(TSErrors.EmptyTypeParameters, node);\n    }\n    if (refTrailingCommaPos.value !== -1) {\n      this.addExtra(node, \"trailingComma\", refTrailingCommaPos.value);\n    }\n    return this.finishNode(node, \"TSTypeParameterDeclaration\");\n  }\n  tsFillSignature(returnToken, signature) {\n    const returnTokenRequired = returnToken === 19;\n    const paramsKey = \"parameters\";\n    const returnTypeKey = \"typeAnnotation\";\n    signature.typeParameters = this.tsTryParseTypeParameters(this.tsParseConstModifier);\n    this.expect(10);\n    signature[paramsKey] = this.tsParseBindingListForSignature();\n    if (returnTokenRequired) {\n      signature[returnTypeKey] = this.tsParseTypeOrTypePredicateAnnotation(returnToken);\n    } else if (this.match(returnToken)) {\n      signature[returnTypeKey] = this.tsParseTypeOrTypePredicateAnnotation(returnToken);\n    }\n  }\n  tsParseBindingListForSignature() {\n    const list = super.parseBindingList(11, 41, 2);\n    for (const pattern of list) {\n      const {\n        type\n      } = pattern;\n      if (type === \"AssignmentPattern\" || type === \"TSParameterProperty\") {\n        this.raise(TSErrors.UnsupportedSignatureParameterKind, pattern, {\n          type\n        });\n      }\n    }\n    return list;\n  }\n  tsParseTypeMemberSemicolon() {\n    if (!this.eat(12) && !this.isLineTerminator()) {\n      this.expect(13);\n    }\n  }\n  tsParseSignatureMember(kind, node) {\n    this.tsFillSignature(14, node);\n    this.tsParseTypeMemberSemicolon();\n    return this.finishNode(node, kind);\n  }\n  tsIsUnambiguouslyIndexSignature() {\n    this.next();\n    if (tokenIsIdentifier(this.state.type)) {\n      this.next();\n      return this.match(14);\n    }\n    return false;\n  }\n  tsTryParseIndexSignature(node) {\n    if (!(this.match(0) && this.tsLookAhead(this.tsIsUnambiguouslyIndexSignature.bind(this)))) {\n      return;\n    }\n    this.expect(0);\n    const id = this.parseIdentifier();\n    id.typeAnnotation = this.tsParseTypeAnnotation();\n    this.resetEndLocation(id);\n    this.expect(3);\n    node.parameters = [id];\n    const type = this.tsTryParseTypeAnnotation();\n    if (type) node.typeAnnotation = type;\n    this.tsParseTypeMemberSemicolon();\n    return this.finishNode(node, \"TSIndexSignature\");\n  }\n  tsParsePropertyOrMethodSignature(node, readonly) {\n    if (this.eat(17)) node.optional = true;\n    if (this.match(10) || this.match(47)) {\n      if (readonly) {\n        this.raise(TSErrors.ReadonlyForMethodSignature, node);\n      }\n      const method = node;\n      if (method.kind && this.match(47)) {\n        this.raise(TSErrors.AccessorCannotHaveTypeParameters, this.state.curPosition());\n      }\n      this.tsFillSignature(14, method);\n      this.tsParseTypeMemberSemicolon();\n      const paramsKey = \"parameters\";\n      const returnTypeKey = \"typeAnnotation\";\n      if (method.kind === \"get\") {\n        if (method[paramsKey].length > 0) {\n          this.raise(Errors.BadGetterArity, this.state.curPosition());\n          if (this.isThisParam(method[paramsKey][0])) {\n            this.raise(TSErrors.AccessorCannotDeclareThisParameter, this.state.curPosition());\n          }\n        }\n      } else if (method.kind === \"set\") {\n        if (method[paramsKey].length !== 1) {\n          this.raise(Errors.BadSetterArity, this.state.curPosition());\n        } else {\n          const firstParameter = method[paramsKey][0];\n          if (this.isThisParam(firstParameter)) {\n            this.raise(TSErrors.AccessorCannotDeclareThisParameter, this.state.curPosition());\n          }\n          if (firstParameter.type === \"Identifier\" && firstParameter.optional) {\n            this.raise(TSErrors.SetAccessorCannotHaveOptionalParameter, this.state.curPosition());\n          }\n          if (firstParameter.type === \"RestElement\") {\n            this.raise(TSErrors.SetAccessorCannotHaveRestParameter, this.state.curPosition());\n          }\n        }\n        if (method[returnTypeKey]) {\n          this.raise(TSErrors.SetAccessorCannotHaveReturnType, method[returnTypeKey]);\n        }\n      } else {\n        method.kind = \"method\";\n      }\n      return this.finishNode(method, \"TSMethodSignature\");\n    } else {\n      const property = node;\n      if (readonly) property.readonly = true;\n      const type = this.tsTryParseTypeAnnotation();\n      if (type) property.typeAnnotation = type;\n      this.tsParseTypeMemberSemicolon();\n      return this.finishNode(property, \"TSPropertySignature\");\n    }\n  }\n  tsParseTypeMember() {\n    const node = this.startNode();\n    if (this.match(10) || this.match(47)) {\n      return this.tsParseSignatureMember(\"TSCallSignatureDeclaration\", node);\n    }\n    if (this.match(77)) {\n      const id = this.startNode();\n      this.next();\n      if (this.match(10) || this.match(47)) {\n        return this.tsParseSignatureMember(\"TSConstructSignatureDeclaration\", node);\n      } else {\n        node.key = this.createIdentifier(id, \"new\");\n        return this.tsParsePropertyOrMethodSignature(node, false);\n      }\n    }\n    this.tsParseModifiers({\n      allowedModifiers: [\"readonly\"],\n      disallowedModifiers: [\"declare\", \"abstract\", \"private\", \"protected\", \"public\", \"static\", \"override\"]\n    }, node);\n    const idx = this.tsTryParseIndexSignature(node);\n    if (idx) {\n      return idx;\n    }\n    super.parsePropertyName(node);\n    if (!node.computed && node.key.type === \"Identifier\" && (node.key.name === \"get\" || node.key.name === \"set\") && this.tsTokenCanFollowModifier()) {\n      node.kind = node.key.name;\n      super.parsePropertyName(node);\n      if (!this.match(10) && !this.match(47)) {\n        this.unexpected(null, 10);\n      }\n    }\n    return this.tsParsePropertyOrMethodSignature(node, !!node.readonly);\n  }\n  tsParseTypeLiteral() {\n    const node = this.startNode();\n    node.members = this.tsParseObjectTypeMembers();\n    return this.finishNode(node, \"TSTypeLiteral\");\n  }\n  tsParseObjectTypeMembers() {\n    this.expect(5);\n    const members = this.tsParseList(\"TypeMembers\", this.tsParseTypeMember.bind(this));\n    this.expect(8);\n    return members;\n  }\n  tsIsStartOfMappedType() {\n    this.next();\n    if (this.eat(53)) {\n      return this.isContextual(122);\n    }\n    if (this.isContextual(122)) {\n      this.next();\n    }\n    if (!this.match(0)) {\n      return false;\n    }\n    this.next();\n    if (!this.tsIsIdentifier()) {\n      return false;\n    }\n    this.next();\n    return this.match(58);\n  }\n  tsParseMappedType() {\n    const node = this.startNode();\n    this.expect(5);\n    if (this.match(53)) {\n      node.readonly = this.state.value;\n      this.next();\n      this.expectContextual(122);\n    } else if (this.eatContextual(122)) {\n      node.readonly = true;\n    }\n    this.expect(0);\n    {\n      const typeParameter = this.startNode();\n      typeParameter.name = this.tsParseTypeParameterName();\n      typeParameter.constraint = this.tsExpectThenParseType(58);\n      node.typeParameter = this.finishNode(typeParameter, \"TSTypeParameter\");\n    }\n    node.nameType = this.eatContextual(93) ? this.tsParseType() : null;\n    this.expect(3);\n    if (this.match(53)) {\n      node.optional = this.state.value;\n      this.next();\n      this.expect(17);\n    } else if (this.eat(17)) {\n      node.optional = true;\n    }\n    node.typeAnnotation = this.tsTryParseType();\n    this.semicolon();\n    this.expect(8);\n    return this.finishNode(node, \"TSMappedType\");\n  }\n  tsParseTupleType() {\n    const node = this.startNode();\n    node.elementTypes = this.tsParseBracketedList(\"TupleElementTypes\", this.tsParseTupleElementType.bind(this), true, false);\n    let seenOptionalElement = false;\n    node.elementTypes.forEach(elementNode => {\n      const {\n        type\n      } = elementNode;\n      if (seenOptionalElement && type !== \"TSRestType\" && type !== \"TSOptionalType\" && !(type === \"TSNamedTupleMember\" && elementNode.optional)) {\n        this.raise(TSErrors.OptionalTypeBeforeRequired, elementNode);\n      }\n      seenOptionalElement || (seenOptionalElement = type === \"TSNamedTupleMember\" && elementNode.optional || type === \"TSOptionalType\");\n    });\n    return this.finishNode(node, \"TSTupleType\");\n  }\n  tsParseTupleElementType() {\n    const restStartLoc = this.state.startLoc;\n    const rest = this.eat(21);\n    const {\n      startLoc\n    } = this.state;\n    let labeled;\n    let label;\n    let optional;\n    let type;\n    const isWord = tokenIsKeywordOrIdentifier(this.state.type);\n    const chAfterWord = isWord ? this.lookaheadCharCode() : null;\n    if (chAfterWord === 58) {\n      labeled = true;\n      optional = false;\n      label = this.parseIdentifier(true);\n      this.expect(14);\n      type = this.tsParseType();\n    } else if (chAfterWord === 63) {\n      optional = true;\n      const wordName = this.state.value;\n      const typeOrLabel = this.tsParseNonArrayType();\n      if (this.lookaheadCharCode() === 58) {\n        labeled = true;\n        label = this.createIdentifier(this.startNodeAt(startLoc), wordName);\n        this.expect(17);\n        this.expect(14);\n        type = this.tsParseType();\n      } else {\n        labeled = false;\n        type = typeOrLabel;\n        this.expect(17);\n      }\n    } else {\n      type = this.tsParseType();\n      optional = this.eat(17);\n      labeled = this.eat(14);\n    }\n    if (labeled) {\n      let labeledNode;\n      if (label) {\n        labeledNode = this.startNodeAt(startLoc);\n        labeledNode.optional = optional;\n        labeledNode.label = label;\n        labeledNode.elementType = type;\n        if (this.eat(17)) {\n          labeledNode.optional = true;\n          this.raise(TSErrors.TupleOptionalAfterType, this.state.lastTokStartLoc);\n        }\n      } else {\n        labeledNode = this.startNodeAt(startLoc);\n        labeledNode.optional = optional;\n        this.raise(TSErrors.InvalidTupleMemberLabel, type);\n        labeledNode.label = type;\n        labeledNode.elementType = this.tsParseType();\n      }\n      type = this.finishNode(labeledNode, \"TSNamedTupleMember\");\n    } else if (optional) {\n      const optionalTypeNode = this.startNodeAt(startLoc);\n      optionalTypeNode.typeAnnotation = type;\n      type = this.finishNode(optionalTypeNode, \"TSOptionalType\");\n    }\n    if (rest) {\n      const restNode = this.startNodeAt(restStartLoc);\n      restNode.typeAnnotation = type;\n      type = this.finishNode(restNode, \"TSRestType\");\n    }\n    return type;\n  }\n  tsParseParenthesizedType() {\n    const node = this.startNode();\n    this.expect(10);\n    node.typeAnnotation = this.tsParseType();\n    this.expect(11);\n    return this.finishNode(node, \"TSParenthesizedType\");\n  }\n  tsParseFunctionOrConstructorType(type, abstract) {\n    const node = this.startNode();\n    if (type === \"TSConstructorType\") {\n      node.abstract = !!abstract;\n      if (abstract) this.next();\n      this.next();\n    }\n    this.tsInAllowConditionalTypesContext(() => this.tsFillSignature(19, node));\n    return this.finishNode(node, type);\n  }\n  tsParseLiteralTypeNode() {\n    const node = this.startNode();\n    switch (this.state.type) {\n      case 135:\n      case 136:\n      case 134:\n      case 85:\n      case 86:\n        node.literal = super.parseExprAtom();\n        break;\n      default:\n        this.unexpected();\n    }\n    return this.finishNode(node, \"TSLiteralType\");\n  }\n  tsParseTemplateLiteralType() {\n    {\n      const node = this.startNode();\n      node.literal = super.parseTemplate(false);\n      return this.finishNode(node, \"TSLiteralType\");\n    }\n  }\n  parseTemplateSubstitution() {\n    if (this.state.inType) return this.tsParseType();\n    return super.parseTemplateSubstitution();\n  }\n  tsParseThisTypeOrThisTypePredicate() {\n    const thisKeyword = this.tsParseThisTypeNode();\n    if (this.isContextual(116) && !this.hasPrecedingLineBreak()) {\n      return this.tsParseThisTypePredicate(thisKeyword);\n    } else {\n      return thisKeyword;\n    }\n  }\n  tsParseNonArrayType() {\n    switch (this.state.type) {\n      case 134:\n      case 135:\n      case 136:\n      case 85:\n      case 86:\n        return this.tsParseLiteralTypeNode();\n      case 53:\n        if (this.state.value === \"-\") {\n          const node = this.startNode();\n          const nextToken = this.lookahead();\n          if (nextToken.type !== 135 && nextToken.type !== 136) {\n            this.unexpected();\n          }\n          node.literal = this.parseMaybeUnary();\n          return this.finishNode(node, \"TSLiteralType\");\n        }\n        break;\n      case 78:\n        return this.tsParseThisTypeOrThisTypePredicate();\n      case 87:\n        return this.tsParseTypeQuery();\n      case 83:\n        return this.tsParseImportType();\n      case 5:\n        return this.tsLookAhead(this.tsIsStartOfMappedType.bind(this)) ? this.tsParseMappedType() : this.tsParseTypeLiteral();\n      case 0:\n        return this.tsParseTupleType();\n      case 10:\n        return this.tsParseParenthesizedType();\n      case 25:\n      case 24:\n        return this.tsParseTemplateLiteralType();\n      default:\n        {\n          const {\n            type\n          } = this.state;\n          if (tokenIsIdentifier(type) || type === 88 || type === 84) {\n            const nodeType = type === 88 ? \"TSVoidKeyword\" : type === 84 ? \"TSNullKeyword\" : keywordTypeFromName(this.state.value);\n            if (nodeType !== undefined && this.lookaheadCharCode() !== 46) {\n              const node = this.startNode();\n              this.next();\n              return this.finishNode(node, nodeType);\n            }\n            return this.tsParseTypeReference();\n          }\n        }\n    }\n    throw this.unexpected();\n  }\n  tsParseArrayTypeOrHigher() {\n    const {\n      startLoc\n    } = this.state;\n    let type = this.tsParseNonArrayType();\n    while (!this.hasPrecedingLineBreak() && this.eat(0)) {\n      if (this.match(3)) {\n        const node = this.startNodeAt(startLoc);\n        node.elementType = type;\n        this.expect(3);\n        type = this.finishNode(node, \"TSArrayType\");\n      } else {\n        const node = this.startNodeAt(startLoc);\n        node.objectType = type;\n        node.indexType = this.tsParseType();\n        this.expect(3);\n        type = this.finishNode(node, \"TSIndexedAccessType\");\n      }\n    }\n    return type;\n  }\n  tsParseTypeOperator() {\n    const node = this.startNode();\n    const operator = this.state.value;\n    this.next();\n    node.operator = operator;\n    node.typeAnnotation = this.tsParseTypeOperatorOrHigher();\n    if (operator === \"readonly\") {\n      this.tsCheckTypeAnnotationForReadOnly(node);\n    }\n    return this.finishNode(node, \"TSTypeOperator\");\n  }\n  tsCheckTypeAnnotationForReadOnly(node) {\n    switch (node.typeAnnotation.type) {\n      case \"TSTupleType\":\n      case \"TSArrayType\":\n        return;\n      default:\n        this.raise(TSErrors.UnexpectedReadonly, node);\n    }\n  }\n  tsParseInferType() {\n    const node = this.startNode();\n    this.expectContextual(115);\n    const typeParameter = this.startNode();\n    typeParameter.name = this.tsParseTypeParameterName();\n    typeParameter.constraint = this.tsTryParse(() => this.tsParseConstraintForInferType());\n    node.typeParameter = this.finishNode(typeParameter, \"TSTypeParameter\");\n    return this.finishNode(node, \"TSInferType\");\n  }\n  tsParseConstraintForInferType() {\n    if (this.eat(81)) {\n      const constraint = this.tsInDisallowConditionalTypesContext(() => this.tsParseType());\n      if (this.state.inDisallowConditionalTypesContext || !this.match(17)) {\n        return constraint;\n      }\n    }\n  }\n  tsParseTypeOperatorOrHigher() {\n    const isTypeOperator = tokenIsTSTypeOperator(this.state.type) && !this.state.containsEsc;\n    return isTypeOperator ? this.tsParseTypeOperator() : this.isContextual(115) ? this.tsParseInferType() : this.tsInAllowConditionalTypesContext(() => this.tsParseArrayTypeOrHigher());\n  }\n  tsParseUnionOrIntersectionType(kind, parseConstituentType, operator) {\n    const node = this.startNode();\n    const hasLeadingOperator = this.eat(operator);\n    const types = [];\n    do {\n      types.push(parseConstituentType());\n    } while (this.eat(operator));\n    if (types.length === 1 && !hasLeadingOperator) {\n      return types[0];\n    }\n    node.types = types;\n    return this.finishNode(node, kind);\n  }\n  tsParseIntersectionTypeOrHigher() {\n    return this.tsParseUnionOrIntersectionType(\"TSIntersectionType\", this.tsParseTypeOperatorOrHigher.bind(this), 45);\n  }\n  tsParseUnionTypeOrHigher() {\n    return this.tsParseUnionOrIntersectionType(\"TSUnionType\", this.tsParseIntersectionTypeOrHigher.bind(this), 43);\n  }\n  tsIsStartOfFunctionType() {\n    if (this.match(47)) {\n      return true;\n    }\n    return this.match(10) && this.tsLookAhead(this.tsIsUnambiguouslyStartOfFunctionType.bind(this));\n  }\n  tsSkipParameterStart() {\n    if (tokenIsIdentifier(this.state.type) || this.match(78)) {\n      this.next();\n      return true;\n    }\n    if (this.match(5)) {\n      const {\n        errors\n      } = this.state;\n      const previousErrorCount = errors.length;\n      try {\n        this.parseObjectLike(8, true);\n        return errors.length === previousErrorCount;\n      } catch (_unused) {\n        return false;\n      }\n    }\n    if (this.match(0)) {\n      this.next();\n      const {\n        errors\n      } = this.state;\n      const previousErrorCount = errors.length;\n      try {\n        super.parseBindingList(3, 93, 1);\n        return errors.length === previousErrorCount;\n      } catch (_unused2) {\n        return false;\n      }\n    }\n    return false;\n  }\n  tsIsUnambiguouslyStartOfFunctionType() {\n    this.next();\n    if (this.match(11) || this.match(21)) {\n      return true;\n    }\n    if (this.tsSkipParameterStart()) {\n      if (this.match(14) || this.match(12) || this.match(17) || this.match(29)) {\n        return true;\n      }\n      if (this.match(11)) {\n        this.next();\n        if (this.match(19)) {\n          return true;\n        }\n      }\n    }\n    return false;\n  }\n  tsParseTypeOrTypePredicateAnnotation(returnToken) {\n    return this.tsInType(() => {\n      const t = this.startNode();\n      this.expect(returnToken);\n      const node = this.startNode();\n      const asserts = !!this.tsTryParse(this.tsParseTypePredicateAsserts.bind(this));\n      if (asserts && this.match(78)) {\n        let thisTypePredicate = this.tsParseThisTypeOrThisTypePredicate();\n        if (thisTypePredicate.type === \"TSThisType\") {\n          node.parameterName = thisTypePredicate;\n          node.asserts = true;\n          node.typeAnnotation = null;\n          thisTypePredicate = this.finishNode(node, \"TSTypePredicate\");\n        } else {\n          this.resetStartLocationFromNode(thisTypePredicate, node);\n          thisTypePredicate.asserts = true;\n        }\n        t.typeAnnotation = thisTypePredicate;\n        return this.finishNode(t, \"TSTypeAnnotation\");\n      }\n      const typePredicateVariable = this.tsIsIdentifier() && this.tsTryParse(this.tsParseTypePredicatePrefix.bind(this));\n      if (!typePredicateVariable) {\n        if (!asserts) {\n          return this.tsParseTypeAnnotation(false, t);\n        }\n        node.parameterName = this.parseIdentifier();\n        node.asserts = asserts;\n        node.typeAnnotation = null;\n        t.typeAnnotation = this.finishNode(node, \"TSTypePredicate\");\n        return this.finishNode(t, \"TSTypeAnnotation\");\n      }\n      const type = this.tsParseTypeAnnotation(false);\n      node.parameterName = typePredicateVariable;\n      node.typeAnnotation = type;\n      node.asserts = asserts;\n      t.typeAnnotation = this.finishNode(node, \"TSTypePredicate\");\n      return this.finishNode(t, \"TSTypeAnnotation\");\n    });\n  }\n  tsTryParseTypeOrTypePredicateAnnotation() {\n    if (this.match(14)) {\n      return this.tsParseTypeOrTypePredicateAnnotation(14);\n    }\n  }\n  tsTryParseTypeAnnotation() {\n    if (this.match(14)) {\n      return this.tsParseTypeAnnotation();\n    }\n  }\n  tsTryParseType() {\n    return this.tsEatThenParseType(14);\n  }\n  tsParseTypePredicatePrefix() {\n    const id = this.parseIdentifier();\n    if (this.isContextual(116) && !this.hasPrecedingLineBreak()) {\n      this.next();\n      return id;\n    }\n  }\n  tsParseTypePredicateAsserts() {\n    if (this.state.type !== 109) {\n      return false;\n    }\n    const containsEsc = this.state.containsEsc;\n    this.next();\n    if (!tokenIsIdentifier(this.state.type) && !this.match(78)) {\n      return false;\n    }\n    if (containsEsc) {\n      this.raise(Errors.InvalidEscapedReservedWord, this.state.lastTokStartLoc, {\n        reservedWord: \"asserts\"\n      });\n    }\n    return true;\n  }\n  tsParseTypeAnnotation(eatColon = true, t = this.startNode()) {\n    this.tsInType(() => {\n      if (eatColon) this.expect(14);\n      t.typeAnnotation = this.tsParseType();\n    });\n    return this.finishNode(t, \"TSTypeAnnotation\");\n  }\n  tsParseType() {\n    assert(this.state.inType);\n    const type = this.tsParseNonConditionalType();\n    if (this.state.inDisallowConditionalTypesContext || this.hasPrecedingLineBreak() || !this.eat(81)) {\n      return type;\n    }\n    const node = this.startNodeAtNode(type);\n    node.checkType = type;\n    node.extendsType = this.tsInDisallowConditionalTypesContext(() => this.tsParseNonConditionalType());\n    this.expect(17);\n    node.trueType = this.tsInAllowConditionalTypesContext(() => this.tsParseType());\n    this.expect(14);\n    node.falseType = this.tsInAllowConditionalTypesContext(() => this.tsParseType());\n    return this.finishNode(node, \"TSConditionalType\");\n  }\n  isAbstractConstructorSignature() {\n    return this.isContextual(124) && this.isLookaheadContextual(\"new\");\n  }\n  tsParseNonConditionalType() {\n    if (this.tsIsStartOfFunctionType()) {\n      return this.tsParseFunctionOrConstructorType(\"TSFunctionType\");\n    }\n    if (this.match(77)) {\n      return this.tsParseFunctionOrConstructorType(\"TSConstructorType\");\n    } else if (this.isAbstractConstructorSignature()) {\n      return this.tsParseFunctionOrConstructorType(\"TSConstructorType\", true);\n    }\n    return this.tsParseUnionTypeOrHigher();\n  }\n  tsParseTypeAssertion() {\n    if (this.getPluginOption(\"typescript\", \"disallowAmbiguousJSXLike\")) {\n      this.raise(TSErrors.ReservedTypeAssertion, this.state.startLoc);\n    }\n    const node = this.startNode();\n    node.typeAnnotation = this.tsInType(() => {\n      this.next();\n      return this.match(75) ? this.tsParseTypeReference() : this.tsParseType();\n    });\n    this.expect(48);\n    node.expression = this.parseMaybeUnary();\n    return this.finishNode(node, \"TSTypeAssertion\");\n  }\n  tsParseHeritageClause(token) {\n    const originalStartLoc = this.state.startLoc;\n    const delimitedList = this.tsParseDelimitedList(\"HeritageClauseElement\", () => {\n      {\n        const node = this.startNode();\n        node.expression = this.tsParseEntityName(1 | 2);\n        if (this.match(47)) {\n          node.typeParameters = this.tsParseTypeArguments();\n        }\n        return this.finishNode(node, \"TSExpressionWithTypeArguments\");\n      }\n    });\n    if (!delimitedList.length) {\n      this.raise(TSErrors.EmptyHeritageClauseType, originalStartLoc, {\n        token\n      });\n    }\n    return delimitedList;\n  }\n  tsParseInterfaceDeclaration(node, properties = {}) {\n    if (this.hasFollowingLineBreak()) return null;\n    this.expectContextual(129);\n    if (properties.declare) node.declare = true;\n    if (tokenIsIdentifier(this.state.type)) {\n      node.id = this.parseIdentifier();\n      this.checkIdentifier(node.id, 130);\n    } else {\n      node.id = null;\n      this.raise(TSErrors.MissingInterfaceName, this.state.startLoc);\n    }\n    node.typeParameters = this.tsTryParseTypeParameters(this.tsParseInOutConstModifiers);\n    if (this.eat(81)) {\n      node.extends = this.tsParseHeritageClause(\"extends\");\n    }\n    const body = this.startNode();\n    body.body = this.tsInType(this.tsParseObjectTypeMembers.bind(this));\n    node.body = this.finishNode(body, \"TSInterfaceBody\");\n    return this.finishNode(node, \"TSInterfaceDeclaration\");\n  }\n  tsParseTypeAliasDeclaration(node) {\n    node.id = this.parseIdentifier();\n    this.checkIdentifier(node.id, 2);\n    node.typeAnnotation = this.tsInType(() => {\n      node.typeParameters = this.tsTryParseTypeParameters(this.tsParseInOutModifiers);\n      this.expect(29);\n      if (this.isContextual(114) && this.lookaheadCharCode() !== 46) {\n        const node = this.startNode();\n        this.next();\n        return this.finishNode(node, \"TSIntrinsicKeyword\");\n      }\n      return this.tsParseType();\n    });\n    this.semicolon();\n    return this.finishNode(node, \"TSTypeAliasDeclaration\");\n  }\n  tsInTopLevelContext(cb) {\n    if (this.curContext() !== types.brace) {\n      const oldContext = this.state.context;\n      this.state.context = [oldContext[0]];\n      try {\n        return cb();\n      } finally {\n        this.state.context = oldContext;\n      }\n    } else {\n      return cb();\n    }\n  }\n  tsInType(cb) {\n    const oldInType = this.state.inType;\n    this.state.inType = true;\n    try {\n      return cb();\n    } finally {\n      this.state.inType = oldInType;\n    }\n  }\n  tsInDisallowConditionalTypesContext(cb) {\n    const oldInDisallowConditionalTypesContext = this.state.inDisallowConditionalTypesContext;\n    this.state.inDisallowConditionalTypesContext = true;\n    try {\n      return cb();\n    } finally {\n      this.state.inDisallowConditionalTypesContext = oldInDisallowConditionalTypesContext;\n    }\n  }\n  tsInAllowConditionalTypesContext(cb) {\n    const oldInDisallowConditionalTypesContext = this.state.inDisallowConditionalTypesContext;\n    this.state.inDisallowConditionalTypesContext = false;\n    try {\n      return cb();\n    } finally {\n      this.state.inDisallowConditionalTypesContext = oldInDisallowConditionalTypesContext;\n    }\n  }\n  tsEatThenParseType(token) {\n    if (this.match(token)) {\n      return this.tsNextThenParseType();\n    }\n  }\n  tsExpectThenParseType(token) {\n    return this.tsInType(() => {\n      this.expect(token);\n      return this.tsParseType();\n    });\n  }\n  tsNextThenParseType() {\n    return this.tsInType(() => {\n      this.next();\n      return this.tsParseType();\n    });\n  }\n  tsParseEnumMember() {\n    const node = this.startNode();\n    node.id = this.match(134) ? super.parseStringLiteral(this.state.value) : this.parseIdentifier(true);\n    if (this.eat(29)) {\n      node.initializer = super.parseMaybeAssignAllowIn();\n    }\n    return this.finishNode(node, \"TSEnumMember\");\n  }\n  tsParseEnumDeclaration(node, properties = {}) {\n    if (properties.const) node.const = true;\n    if (properties.declare) node.declare = true;\n    this.expectContextual(126);\n    node.id = this.parseIdentifier();\n    this.checkIdentifier(node.id, node.const ? 8971 : 8459);\n    {\n      this.expect(5);\n      node.members = this.tsParseDelimitedList(\"EnumMembers\", this.tsParseEnumMember.bind(this));\n      this.expect(8);\n    }\n    return this.finishNode(node, \"TSEnumDeclaration\");\n  }\n  tsParseEnumBody() {\n    const node = this.startNode();\n    this.expect(5);\n    node.members = this.tsParseDelimitedList(\"EnumMembers\", this.tsParseEnumMember.bind(this));\n    this.expect(8);\n    return this.finishNode(node, \"TSEnumBody\");\n  }\n  tsParseModuleBlock() {\n    const node = this.startNode();\n    this.scope.enter(0);\n    this.expect(5);\n    super.parseBlockOrModuleBlockBody(node.body = [], undefined, true, 8);\n    this.scope.exit();\n    return this.finishNode(node, \"TSModuleBlock\");\n  }\n  tsParseModuleOrNamespaceDeclaration(node, nested = false) {\n    node.id = this.parseIdentifier();\n    if (!nested) {\n      this.checkIdentifier(node.id, 1024);\n    }\n    if (this.eat(16)) {\n      const inner = this.startNode();\n      this.tsParseModuleOrNamespaceDeclaration(inner, true);\n      node.body = inner;\n    } else {\n      this.scope.enter(1024);\n      this.prodParam.enter(0);\n      node.body = this.tsParseModuleBlock();\n      this.prodParam.exit();\n      this.scope.exit();\n    }\n    return this.finishNode(node, \"TSModuleDeclaration\");\n  }\n  tsParseAmbientExternalModuleDeclaration(node) {\n    if (this.isContextual(112)) {\n      node.kind = \"global\";\n      {\n        node.global = true;\n      }\n      node.id = this.parseIdentifier();\n    } else if (this.match(134)) {\n      node.kind = \"module\";\n      node.id = super.parseStringLiteral(this.state.value);\n    } else {\n      this.unexpected();\n    }\n    if (this.match(5)) {\n      this.scope.enter(1024);\n      this.prodParam.enter(0);\n      node.body = this.tsParseModuleBlock();\n      this.prodParam.exit();\n      this.scope.exit();\n    } else {\n      this.semicolon();\n    }\n    return this.finishNode(node, \"TSModuleDeclaration\");\n  }\n  tsParseImportEqualsDeclaration(node, maybeDefaultIdentifier, isExport) {\n    {\n      node.isExport = isExport || false;\n    }\n    node.id = maybeDefaultIdentifier || this.parseIdentifier();\n    this.checkIdentifier(node.id, 4096);\n    this.expect(29);\n    const moduleReference = this.tsParseModuleReference();\n    if (node.importKind === \"type\" && moduleReference.type !== \"TSExternalModuleReference\") {\n      this.raise(TSErrors.ImportAliasHasImportType, moduleReference);\n    }\n    node.moduleReference = moduleReference;\n    this.semicolon();\n    return this.finishNode(node, \"TSImportEqualsDeclaration\");\n  }\n  tsIsExternalModuleReference() {\n    return this.isContextual(119) && this.lookaheadCharCode() === 40;\n  }\n  tsParseModuleReference() {\n    return this.tsIsExternalModuleReference() ? this.tsParseExternalModuleReference() : this.tsParseEntityName(0);\n  }\n  tsParseExternalModuleReference() {\n    const node = this.startNode();\n    this.expectContextual(119);\n    this.expect(10);\n    if (!this.match(134)) {\n      this.unexpected();\n    }\n    node.expression = super.parseExprAtom();\n    this.expect(11);\n    this.sawUnambiguousESM = true;\n    return this.finishNode(node, \"TSExternalModuleReference\");\n  }\n  tsLookAhead(f) {\n    const state = this.state.clone();\n    const res = f();\n    this.state = state;\n    return res;\n  }\n  tsTryParseAndCatch(f) {\n    const result = this.tryParse(abort => f() || abort());\n    if (result.aborted || !result.node) return;\n    if (result.error) this.state = result.failState;\n    return result.node;\n  }\n  tsTryParse(f) {\n    const state = this.state.clone();\n    const result = f();\n    if (result !== undefined && result !== false) {\n      return result;\n    }\n    this.state = state;\n  }\n  tsTryParseDeclare(node) {\n    if (this.isLineTerminator()) {\n      return;\n    }\n    const startType = this.state.type;\n    return this.tsInAmbientContext(() => {\n      switch (startType) {\n        case 68:\n          node.declare = true;\n          return super.parseFunctionStatement(node, false, false);\n        case 80:\n          node.declare = true;\n          return this.parseClass(node, true, false);\n        case 126:\n          return this.tsParseEnumDeclaration(node, {\n            declare: true\n          });\n        case 112:\n          return this.tsParseAmbientExternalModuleDeclaration(node);\n        case 100:\n          if (this.state.containsEsc) {\n            return;\n          }\n        case 75:\n        case 74:\n          if (!this.match(75) || !this.isLookaheadContextual(\"enum\")) {\n            node.declare = true;\n            return this.parseVarStatement(node, this.state.value, true);\n          }\n          this.expect(75);\n          return this.tsParseEnumDeclaration(node, {\n            const: true,\n            declare: true\n          });\n        case 107:\n          if (this.isUsing()) {\n            this.raise(TSErrors.InvalidModifierOnUsingDeclaration, this.state.startLoc, \"declare\");\n            node.declare = true;\n            return this.parseVarStatement(node, \"using\", true);\n          }\n          break;\n        case 96:\n          if (this.isAwaitUsing()) {\n            this.raise(TSErrors.InvalidModifierOnAwaitUsingDeclaration, this.state.startLoc, \"declare\");\n            node.declare = true;\n            this.next();\n            return this.parseVarStatement(node, \"await using\", true);\n          }\n          break;\n        case 129:\n          {\n            const result = this.tsParseInterfaceDeclaration(node, {\n              declare: true\n            });\n            if (result) return result;\n          }\n        default:\n          if (tokenIsIdentifier(startType)) {\n            return this.tsParseDeclaration(node, this.state.type, true, null);\n          }\n      }\n    });\n  }\n  tsTryParseExportDeclaration() {\n    return this.tsParseDeclaration(this.startNode(), this.state.type, true, null);\n  }\n  tsParseDeclaration(node, type, next, decorators) {\n    switch (type) {\n      case 124:\n        if (this.tsCheckLineTerminator(next) && (this.match(80) || tokenIsIdentifier(this.state.type))) {\n          return this.tsParseAbstractDeclaration(node, decorators);\n        }\n        break;\n      case 127:\n        if (this.tsCheckLineTerminator(next)) {\n          if (this.match(134)) {\n            return this.tsParseAmbientExternalModuleDeclaration(node);\n          } else if (tokenIsIdentifier(this.state.type)) {\n            node.kind = \"module\";\n            return this.tsParseModuleOrNamespaceDeclaration(node);\n          }\n        }\n        break;\n      case 128:\n        if (this.tsCheckLineTerminator(next) && tokenIsIdentifier(this.state.type)) {\n          node.kind = \"namespace\";\n          return this.tsParseModuleOrNamespaceDeclaration(node);\n        }\n        break;\n      case 130:\n        if (this.tsCheckLineTerminator(next) && tokenIsIdentifier(this.state.type)) {\n          return this.tsParseTypeAliasDeclaration(node);\n        }\n        break;\n    }\n  }\n  tsCheckLineTerminator(next) {\n    if (next) {\n      if (this.hasFollowingLineBreak()) return false;\n      this.next();\n      return true;\n    }\n    return !this.isLineTerminator();\n  }\n  tsTryParseGenericAsyncArrowFunction(startLoc) {\n    if (!this.match(47)) return;\n    const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;\n    this.state.maybeInArrowParameters = true;\n    const res = this.tsTryParseAndCatch(() => {\n      const node = this.startNodeAt(startLoc);\n      node.typeParameters = this.tsParseTypeParameters(this.tsParseConstModifier);\n      super.parseFunctionParams(node);\n      node.returnType = this.tsTryParseTypeOrTypePredicateAnnotation();\n      this.expect(19);\n      return node;\n    });\n    this.state.maybeInArrowParameters = oldMaybeInArrowParameters;\n    if (!res) return;\n    return super.parseArrowExpression(res, null, true);\n  }\n  tsParseTypeArgumentsInExpression() {\n    if (this.reScan_lt() !== 47) return;\n    return this.tsParseTypeArguments();\n  }\n  tsParseTypeArguments() {\n    const node = this.startNode();\n    node.params = this.tsInType(() => this.tsInTopLevelContext(() => {\n      this.expect(47);\n      return this.tsParseDelimitedList(\"TypeParametersOrArguments\", this.tsParseType.bind(this));\n    }));\n    if (node.params.length === 0) {\n      this.raise(TSErrors.EmptyTypeArguments, node);\n    } else if (!this.state.inType && this.curContext() === types.brace) {\n      this.reScan_lt_gt();\n    }\n    this.expect(48);\n    return this.finishNode(node, \"TSTypeParameterInstantiation\");\n  }\n  tsIsDeclarationStart() {\n    return tokenIsTSDeclarationStart(this.state.type);\n  }\n  isExportDefaultSpecifier() {\n    if (this.tsIsDeclarationStart()) return false;\n    return super.isExportDefaultSpecifier();\n  }\n  parseBindingElement(flags, decorators) {\n    const startLoc = decorators.length ? decorators[0].loc.start : this.state.startLoc;\n    const modified = {};\n    this.tsParseModifiers({\n      allowedModifiers: [\"public\", \"private\", \"protected\", \"override\", \"readonly\"]\n    }, modified);\n    const accessibility = modified.accessibility;\n    const override = modified.override;\n    const readonly = modified.readonly;\n    if (!(flags & 4) && (accessibility || readonly || override)) {\n      this.raise(TSErrors.UnexpectedParameterModifier, startLoc);\n    }\n    const left = this.parseMaybeDefault();\n    if (flags & 2) {\n      this.parseFunctionParamType(left);\n    }\n    const elt = this.parseMaybeDefault(left.loc.start, left);\n    if (accessibility || readonly || override) {\n      const pp = this.startNodeAt(startLoc);\n      if (decorators.length) {\n        pp.decorators = decorators;\n      }\n      if (accessibility) pp.accessibility = accessibility;\n      if (readonly) pp.readonly = readonly;\n      if (override) pp.override = override;\n      if (elt.type !== \"Identifier\" && elt.type !== \"AssignmentPattern\") {\n        this.raise(TSErrors.UnsupportedParameterPropertyKind, pp);\n      }\n      pp.parameter = elt;\n      return this.finishNode(pp, \"TSParameterProperty\");\n    }\n    if (decorators.length) {\n      left.decorators = decorators;\n    }\n    return elt;\n  }\n  isSimpleParameter(node) {\n    return node.type === \"TSParameterProperty\" && super.isSimpleParameter(node.parameter) || super.isSimpleParameter(node);\n  }\n  tsDisallowOptionalPattern(node) {\n    for (const param of node.params) {\n      if (param.type !== \"Identifier\" && param.optional && !this.state.isAmbientContext) {\n        this.raise(TSErrors.PatternIsOptional, param);\n      }\n    }\n  }\n  setArrowFunctionParameters(node, params, trailingCommaLoc) {\n    super.setArrowFunctionParameters(node, params, trailingCommaLoc);\n    this.tsDisallowOptionalPattern(node);\n  }\n  parseFunctionBodyAndFinish(node, type, isMethod = false) {\n    if (this.match(14)) {\n      node.returnType = this.tsParseTypeOrTypePredicateAnnotation(14);\n    }\n    const bodilessType = type === \"FunctionDeclaration\" ? \"TSDeclareFunction\" : type === \"ClassMethod\" || type === \"ClassPrivateMethod\" ? \"TSDeclareMethod\" : undefined;\n    if (bodilessType && !this.match(5) && this.isLineTerminator()) {\n      return this.finishNode(node, bodilessType);\n    }\n    if (bodilessType === \"TSDeclareFunction\" && this.state.isAmbientContext) {\n      this.raise(TSErrors.DeclareFunctionHasImplementation, node);\n      if (node.declare) {\n        return super.parseFunctionBodyAndFinish(node, bodilessType, isMethod);\n      }\n    }\n    this.tsDisallowOptionalPattern(node);\n    return super.parseFunctionBodyAndFinish(node, type, isMethod);\n  }\n  registerFunctionStatementId(node) {\n    if (!node.body && node.id) {\n      this.checkIdentifier(node.id, 1024);\n    } else {\n      super.registerFunctionStatementId(node);\n    }\n  }\n  tsCheckForInvalidTypeCasts(items) {\n    items.forEach(node => {\n      if ((node == null ? void 0 : node.type) === \"TSTypeCastExpression\") {\n        this.raise(TSErrors.UnexpectedTypeAnnotation, node.typeAnnotation);\n      }\n    });\n  }\n  toReferencedList(exprList, isInParens) {\n    this.tsCheckForInvalidTypeCasts(exprList);\n    return exprList;\n  }\n  parseArrayLike(close, isTuple, refExpressionErrors) {\n    const node = super.parseArrayLike(close, isTuple, refExpressionErrors);\n    if (node.type === \"ArrayExpression\") {\n      this.tsCheckForInvalidTypeCasts(node.elements);\n    }\n    return node;\n  }\n  parseSubscript(base, startLoc, noCalls, state) {\n    if (!this.hasPrecedingLineBreak() && this.match(35)) {\n      this.state.canStartJSXElement = false;\n      this.next();\n      const nonNullExpression = this.startNodeAt(startLoc);\n      nonNullExpression.expression = base;\n      return this.finishNode(nonNullExpression, \"TSNonNullExpression\");\n    }\n    let isOptionalCall = false;\n    if (this.match(18) && this.lookaheadCharCode() === 60) {\n      if (noCalls) {\n        state.stop = true;\n        return base;\n      }\n      state.optionalChainMember = isOptionalCall = true;\n      this.next();\n    }\n    if (this.match(47) || this.match(51)) {\n      let missingParenErrorLoc;\n      const result = this.tsTryParseAndCatch(() => {\n        if (!noCalls && this.atPossibleAsyncArrow(base)) {\n          const asyncArrowFn = this.tsTryParseGenericAsyncArrowFunction(startLoc);\n          if (asyncArrowFn) {\n            state.stop = true;\n            return asyncArrowFn;\n          }\n        }\n        const typeArguments = this.tsParseTypeArgumentsInExpression();\n        if (!typeArguments) return;\n        if (isOptionalCall && !this.match(10)) {\n          missingParenErrorLoc = this.state.curPosition();\n          return;\n        }\n        if (tokenIsTemplate(this.state.type)) {\n          const result = super.parseTaggedTemplateExpression(base, startLoc, state);\n          {\n            result.typeParameters = typeArguments;\n          }\n          return result;\n        }\n        if (!noCalls && this.eat(10)) {\n          const node = this.startNodeAt(startLoc);\n          node.callee = base;\n          node.arguments = this.parseCallExpressionArguments();\n          this.tsCheckForInvalidTypeCasts(node.arguments);\n          {\n            node.typeParameters = typeArguments;\n          }\n          if (state.optionalChainMember) {\n            node.optional = isOptionalCall;\n          }\n          return this.finishCallExpression(node, state.optionalChainMember);\n        }\n        const tokenType = this.state.type;\n        if (tokenType === 48 || tokenType === 52 || tokenType !== 10 && tokenCanStartExpression(tokenType) && !this.hasPrecedingLineBreak()) {\n          return;\n        }\n        const node = this.startNodeAt(startLoc);\n        node.expression = base;\n        {\n          node.typeParameters = typeArguments;\n        }\n        return this.finishNode(node, \"TSInstantiationExpression\");\n      });\n      if (missingParenErrorLoc) {\n        this.unexpected(missingParenErrorLoc, 10);\n      }\n      if (result) {\n        if (result.type === \"TSInstantiationExpression\") {\n          if (this.match(16) || this.match(18) && this.lookaheadCharCode() !== 40) {\n            this.raise(TSErrors.InvalidPropertyAccessAfterInstantiationExpression, this.state.startLoc);\n          }\n          if (!this.match(16) && !this.match(18)) {\n            result.expression = super.stopParseSubscript(base, state);\n          }\n        }\n        return result;\n      }\n    }\n    return super.parseSubscript(base, startLoc, noCalls, state);\n  }\n  parseNewCallee(node) {\n    var _callee$extra;\n    super.parseNewCallee(node);\n    const {\n      callee\n    } = node;\n    if (callee.type === \"TSInstantiationExpression\" && !((_callee$extra = callee.extra) != null && _callee$extra.parenthesized)) {\n      {\n        node.typeParameters = callee.typeParameters;\n      }\n      node.callee = callee.expression;\n    }\n  }\n  parseExprOp(left, leftStartLoc, minPrec) {\n    let isSatisfies;\n    if (tokenOperatorPrecedence(58) > minPrec && !this.hasPrecedingLineBreak() && (this.isContextual(93) || (isSatisfies = this.isContextual(120)))) {\n      const node = this.startNodeAt(leftStartLoc);\n      node.expression = left;\n      node.typeAnnotation = this.tsInType(() => {\n        this.next();\n        if (this.match(75)) {\n          if (isSatisfies) {\n            this.raise(Errors.UnexpectedKeyword, this.state.startLoc, {\n              keyword: \"const\"\n            });\n          }\n          return this.tsParseTypeReference();\n        }\n        return this.tsParseType();\n      });\n      this.finishNode(node, isSatisfies ? \"TSSatisfiesExpression\" : \"TSAsExpression\");\n      this.reScan_lt_gt();\n      return this.parseExprOp(node, leftStartLoc, minPrec);\n    }\n    return super.parseExprOp(left, leftStartLoc, minPrec);\n  }\n  checkReservedWord(word, startLoc, checkKeywords, isBinding) {\n    if (!this.state.isAmbientContext) {\n      super.checkReservedWord(word, startLoc, checkKeywords, isBinding);\n    }\n  }\n  checkImportReflection(node) {\n    super.checkImportReflection(node);\n    if (node.module && node.importKind !== \"value\") {\n      this.raise(TSErrors.ImportReflectionHasImportType, node.specifiers[0].loc.start);\n    }\n  }\n  checkDuplicateExports() {}\n  isPotentialImportPhase(isExport) {\n    if (super.isPotentialImportPhase(isExport)) return true;\n    if (this.isContextual(130)) {\n      const ch = this.lookaheadCharCode();\n      return isExport ? ch === 123 || ch === 42 : ch !== 61;\n    }\n    return !isExport && this.isContextual(87);\n  }\n  applyImportPhase(node, isExport, phase, loc) {\n    super.applyImportPhase(node, isExport, phase, loc);\n    if (isExport) {\n      node.exportKind = phase === \"type\" ? \"type\" : \"value\";\n    } else {\n      node.importKind = phase === \"type\" || phase === \"typeof\" ? phase : \"value\";\n    }\n  }\n  parseImport(node) {\n    if (this.match(134)) {\n      node.importKind = \"value\";\n      return super.parseImport(node);\n    }\n    let importNode;\n    if (tokenIsIdentifier(this.state.type) && this.lookaheadCharCode() === 61) {\n      node.importKind = \"value\";\n      return this.tsParseImportEqualsDeclaration(node);\n    } else if (this.isContextual(130)) {\n      const maybeDefaultIdentifier = this.parseMaybeImportPhase(node, false);\n      if (this.lookaheadCharCode() === 61) {\n        return this.tsParseImportEqualsDeclaration(node, maybeDefaultIdentifier);\n      } else {\n        importNode = super.parseImportSpecifiersAndAfter(node, maybeDefaultIdentifier);\n      }\n    } else {\n      importNode = super.parseImport(node);\n    }\n    if (importNode.importKind === \"type\" && importNode.specifiers.length > 1 && importNode.specifiers[0].type === \"ImportDefaultSpecifier\") {\n      this.raise(TSErrors.TypeImportCannotSpecifyDefaultAndNamed, importNode);\n    }\n    return importNode;\n  }\n  parseExport(node, decorators) {\n    if (this.match(83)) {\n      const nodeImportEquals = node;\n      this.next();\n      let maybeDefaultIdentifier = null;\n      if (this.isContextual(130) && this.isPotentialImportPhase(false)) {\n        maybeDefaultIdentifier = this.parseMaybeImportPhase(nodeImportEquals, false);\n      } else {\n        nodeImportEquals.importKind = \"value\";\n      }\n      const declaration = this.tsParseImportEqualsDeclaration(nodeImportEquals, maybeDefaultIdentifier, true);\n      {\n        return declaration;\n      }\n    } else if (this.eat(29)) {\n      const assign = node;\n      assign.expression = super.parseExpression();\n      this.semicolon();\n      this.sawUnambiguousESM = true;\n      return this.finishNode(assign, \"TSExportAssignment\");\n    } else if (this.eatContextual(93)) {\n      const decl = node;\n      this.expectContextual(128);\n      decl.id = this.parseIdentifier();\n      this.semicolon();\n      return this.finishNode(decl, \"TSNamespaceExportDeclaration\");\n    } else {\n      return super.parseExport(node, decorators);\n    }\n  }\n  isAbstractClass() {\n    return this.isContextual(124) && this.isLookaheadContextual(\"class\");\n  }\n  parseExportDefaultExpression() {\n    if (this.isAbstractClass()) {\n      const cls = this.startNode();\n      this.next();\n      cls.abstract = true;\n      return this.parseClass(cls, true, true);\n    }\n    if (this.match(129)) {\n      const result = this.tsParseInterfaceDeclaration(this.startNode());\n      if (result) return result;\n    }\n    return super.parseExportDefaultExpression();\n  }\n  parseVarStatement(node, kind, allowMissingInitializer = false) {\n    const {\n      isAmbientContext\n    } = this.state;\n    const declaration = super.parseVarStatement(node, kind, allowMissingInitializer || isAmbientContext);\n    if (!isAmbientContext) return declaration;\n    if (!node.declare && (kind === \"using\" || kind === \"await using\")) {\n      this.raiseOverwrite(TSErrors.UsingDeclarationInAmbientContext, node, kind);\n      return declaration;\n    }\n    for (const {\n      id,\n      init\n    } of declaration.declarations) {\n      if (!init) continue;\n      if (kind === \"var\" || kind === \"let\" || !!id.typeAnnotation) {\n        this.raise(TSErrors.InitializerNotAllowedInAmbientContext, init);\n      } else if (!isValidAmbientConstInitializer(init, this.hasPlugin(\"estree\"))) {\n        this.raise(TSErrors.ConstInitializerMustBeStringOrNumericLiteralOrLiteralEnumReference, init);\n      }\n    }\n    return declaration;\n  }\n  parseStatementContent(flags, decorators) {\n    if (!this.state.containsEsc) {\n      switch (this.state.type) {\n        case 75:\n          {\n            if (this.isLookaheadContextual(\"enum\")) {\n              const node = this.startNode();\n              this.expect(75);\n              return this.tsParseEnumDeclaration(node, {\n                const: true\n              });\n            }\n            break;\n          }\n        case 124:\n        case 125:\n          {\n            if (this.nextTokenIsIdentifierAndNotTSRelationalOperatorOnSameLine()) {\n              const token = this.state.type;\n              const node = this.startNode();\n              this.next();\n              const declaration = token === 125 ? this.tsTryParseDeclare(node) : this.tsParseAbstractDeclaration(node, decorators);\n              if (declaration) {\n                if (token === 125) {\n                  declaration.declare = true;\n                }\n                return declaration;\n              } else {\n                node.expression = this.createIdentifier(this.startNodeAt(node.loc.start), token === 125 ? \"declare\" : \"abstract\");\n                this.semicolon(false);\n                return this.finishNode(node, \"ExpressionStatement\");\n              }\n            }\n            break;\n          }\n        case 126:\n          return this.tsParseEnumDeclaration(this.startNode());\n        case 112:\n          {\n            const nextCh = this.lookaheadCharCode();\n            if (nextCh === 123) {\n              const node = this.startNode();\n              return this.tsParseAmbientExternalModuleDeclaration(node);\n            }\n            break;\n          }\n        case 129:\n          {\n            const result = this.tsParseInterfaceDeclaration(this.startNode());\n            if (result) return result;\n            break;\n          }\n        case 127:\n          {\n            if (this.nextTokenIsIdentifierOrStringLiteralOnSameLine()) {\n              const node = this.startNode();\n              this.next();\n              return this.tsParseDeclaration(node, 127, false, decorators);\n            }\n            break;\n          }\n        case 128:\n          {\n            if (this.nextTokenIsIdentifierOnSameLine()) {\n              const node = this.startNode();\n              this.next();\n              return this.tsParseDeclaration(node, 128, false, decorators);\n            }\n            break;\n          }\n        case 130:\n          {\n            if (this.nextTokenIsIdentifierOnSameLine()) {\n              const node = this.startNode();\n              this.next();\n              return this.tsParseTypeAliasDeclaration(node);\n            }\n            break;\n          }\n      }\n    }\n    return super.parseStatementContent(flags, decorators);\n  }\n  parseAccessModifier() {\n    return this.tsParseModifier([\"public\", \"protected\", \"private\"]);\n  }\n  tsHasSomeModifiers(member, modifiers) {\n    return modifiers.some(modifier => {\n      if (tsIsAccessModifier(modifier)) {\n        return member.accessibility === modifier;\n      }\n      return !!member[modifier];\n    });\n  }\n  tsIsStartOfStaticBlocks() {\n    return this.isContextual(106) && this.lookaheadCharCode() === 123;\n  }\n  parseClassMember(classBody, member, state) {\n    const modifiers = [\"declare\", \"private\", \"public\", \"protected\", \"override\", \"abstract\", \"readonly\", \"static\"];\n    this.tsParseModifiers({\n      allowedModifiers: modifiers,\n      disallowedModifiers: [\"in\", \"out\"],\n      stopOnStartOfClassStaticBlock: true,\n      errorTemplate: TSErrors.InvalidModifierOnTypeParameterPositions\n    }, member);\n    const callParseClassMemberWithIsStatic = () => {\n      if (this.tsIsStartOfStaticBlocks()) {\n        this.next();\n        this.next();\n        if (this.tsHasSomeModifiers(member, modifiers)) {\n          this.raise(TSErrors.StaticBlockCannotHaveModifier, this.state.curPosition());\n        }\n        super.parseClassStaticBlock(classBody, member);\n      } else {\n        this.parseClassMemberWithIsStatic(classBody, member, state, !!member.static);\n      }\n    };\n    if (member.declare) {\n      this.tsInAmbientContext(callParseClassMemberWithIsStatic);\n    } else {\n      callParseClassMemberWithIsStatic();\n    }\n  }\n  parseClassMemberWithIsStatic(classBody, member, state, isStatic) {\n    const idx = this.tsTryParseIndexSignature(member);\n    if (idx) {\n      classBody.body.push(idx);\n      if (member.abstract) {\n        this.raise(TSErrors.IndexSignatureHasAbstract, member);\n      }\n      if (member.accessibility) {\n        this.raise(TSErrors.IndexSignatureHasAccessibility, member, {\n          modifier: member.accessibility\n        });\n      }\n      if (member.declare) {\n        this.raise(TSErrors.IndexSignatureHasDeclare, member);\n      }\n      if (member.override) {\n        this.raise(TSErrors.IndexSignatureHasOverride, member);\n      }\n      return;\n    }\n    if (!this.state.inAbstractClass && member.abstract) {\n      this.raise(TSErrors.NonAbstractClassHasAbstractMethod, member);\n    }\n    if (member.override) {\n      if (!state.hadSuperClass) {\n        this.raise(TSErrors.OverrideNotInSubClass, member);\n      }\n    }\n    super.parseClassMemberWithIsStatic(classBody, member, state, isStatic);\n  }\n  parsePostMemberNameModifiers(methodOrProp) {\n    const optional = this.eat(17);\n    if (optional) methodOrProp.optional = true;\n    if (methodOrProp.readonly && this.match(10)) {\n      this.raise(TSErrors.ClassMethodHasReadonly, methodOrProp);\n    }\n    if (methodOrProp.declare && this.match(10)) {\n      this.raise(TSErrors.ClassMethodHasDeclare, methodOrProp);\n    }\n  }\n  shouldParseExportDeclaration() {\n    if (this.tsIsDeclarationStart()) return true;\n    return super.shouldParseExportDeclaration();\n  }\n  parseConditional(expr, startLoc, refExpressionErrors) {\n    if (!this.match(17)) return expr;\n    if (this.state.maybeInArrowParameters) {\n      const nextCh = this.lookaheadCharCode();\n      if (nextCh === 44 || nextCh === 61 || nextCh === 58 || nextCh === 41) {\n        this.setOptionalParametersError(refExpressionErrors);\n        return expr;\n      }\n    }\n    return super.parseConditional(expr, startLoc, refExpressionErrors);\n  }\n  parseParenItem(node, startLoc) {\n    const newNode = super.parseParenItem(node, startLoc);\n    if (this.eat(17)) {\n      newNode.optional = true;\n      this.resetEndLocation(node);\n    }\n    if (this.match(14)) {\n      const typeCastNode = this.startNodeAt(startLoc);\n      typeCastNode.expression = node;\n      typeCastNode.typeAnnotation = this.tsParseTypeAnnotation();\n      return this.finishNode(typeCastNode, \"TSTypeCastExpression\");\n    }\n    return node;\n  }\n  parseExportDeclaration(node) {\n    if (!this.state.isAmbientContext && this.isContextual(125)) {\n      return this.tsInAmbientContext(() => this.parseExportDeclaration(node));\n    }\n    const startLoc = this.state.startLoc;\n    const isDeclare = this.eatContextual(125);\n    if (isDeclare && (this.isContextual(125) || !this.shouldParseExportDeclaration())) {\n      throw this.raise(TSErrors.ExpectedAmbientAfterExportDeclare, this.state.startLoc);\n    }\n    const isIdentifier = tokenIsIdentifier(this.state.type);\n    const declaration = isIdentifier && this.tsTryParseExportDeclaration() || super.parseExportDeclaration(node);\n    if (!declaration) return null;\n    if (declaration.type === \"TSInterfaceDeclaration\" || declaration.type === \"TSTypeAliasDeclaration\" || isDeclare) {\n      node.exportKind = \"type\";\n    }\n    if (isDeclare && declaration.type !== \"TSImportEqualsDeclaration\") {\n      this.resetStartLocation(declaration, startLoc);\n      declaration.declare = true;\n    }\n    return declaration;\n  }\n  parseClassId(node, isStatement, optionalId, bindingType) {\n    if ((!isStatement || optionalId) && this.isContextual(113)) {\n      return;\n    }\n    super.parseClassId(node, isStatement, optionalId, node.declare ? 1024 : 8331);\n    const typeParameters = this.tsTryParseTypeParameters(this.tsParseInOutConstModifiers);\n    if (typeParameters) node.typeParameters = typeParameters;\n  }\n  parseClassPropertyAnnotation(node) {\n    if (!node.optional) {\n      if (this.eat(35)) {\n        node.definite = true;\n      } else if (this.eat(17)) {\n        node.optional = true;\n      }\n    }\n    const type = this.tsTryParseTypeAnnotation();\n    if (type) node.typeAnnotation = type;\n  }\n  parseClassProperty(node) {\n    this.parseClassPropertyAnnotation(node);\n    if (this.state.isAmbientContext && !(node.readonly && !node.typeAnnotation) && this.match(29)) {\n      this.raise(TSErrors.DeclareClassFieldHasInitializer, this.state.startLoc);\n    }\n    if (node.abstract && this.match(29)) {\n      const {\n        key\n      } = node;\n      this.raise(TSErrors.AbstractPropertyHasInitializer, this.state.startLoc, {\n        propertyName: key.type === \"Identifier\" && !node.computed ? key.name : `[${this.input.slice(this.offsetToSourcePos(key.start), this.offsetToSourcePos(key.end))}]`\n      });\n    }\n    return super.parseClassProperty(node);\n  }\n  parseClassPrivateProperty(node) {\n    if (node.abstract) {\n      this.raise(TSErrors.PrivateElementHasAbstract, node);\n    }\n    if (node.accessibility) {\n      this.raise(TSErrors.PrivateElementHasAccessibility, node, {\n        modifier: node.accessibility\n      });\n    }\n    this.parseClassPropertyAnnotation(node);\n    return super.parseClassPrivateProperty(node);\n  }\n  parseClassAccessorProperty(node) {\n    this.parseClassPropertyAnnotation(node);\n    if (node.optional) {\n      this.raise(TSErrors.AccessorCannotBeOptional, node);\n    }\n    return super.parseClassAccessorProperty(node);\n  }\n  pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) {\n    const typeParameters = this.tsTryParseTypeParameters(this.tsParseConstModifier);\n    if (typeParameters && isConstructor) {\n      this.raise(TSErrors.ConstructorHasTypeParameters, typeParameters);\n    }\n    const {\n      declare = false,\n      kind\n    } = method;\n    if (declare && (kind === \"get\" || kind === \"set\")) {\n      this.raise(TSErrors.DeclareAccessor, method, {\n        kind\n      });\n    }\n    if (typeParameters) method.typeParameters = typeParameters;\n    super.pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper);\n  }\n  pushClassPrivateMethod(classBody, method, isGenerator, isAsync) {\n    const typeParameters = this.tsTryParseTypeParameters(this.tsParseConstModifier);\n    if (typeParameters) method.typeParameters = typeParameters;\n    super.pushClassPrivateMethod(classBody, method, isGenerator, isAsync);\n  }\n  declareClassPrivateMethodInScope(node, kind) {\n    if (node.type === \"TSDeclareMethod\") return;\n    if (node.type === \"MethodDefinition\" && node.value.body == null) {\n      return;\n    }\n    super.declareClassPrivateMethodInScope(node, kind);\n  }\n  parseClassSuper(node) {\n    super.parseClassSuper(node);\n    if (node.superClass && (this.match(47) || this.match(51))) {\n      {\n        node.superTypeParameters = this.tsParseTypeArgumentsInExpression();\n      }\n    }\n    if (this.eatContextual(113)) {\n      node.implements = this.tsParseHeritageClause(\"implements\");\n    }\n  }\n  parseObjPropValue(prop, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors) {\n    const typeParameters = this.tsTryParseTypeParameters(this.tsParseConstModifier);\n    if (typeParameters) prop.typeParameters = typeParameters;\n    return super.parseObjPropValue(prop, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors);\n  }\n  parseFunctionParams(node, isConstructor) {\n    const typeParameters = this.tsTryParseTypeParameters(this.tsParseConstModifier);\n    if (typeParameters) node.typeParameters = typeParameters;\n    super.parseFunctionParams(node, isConstructor);\n  }\n  parseVarId(decl, kind) {\n    super.parseVarId(decl, kind);\n    if (decl.id.type === \"Identifier\" && !this.hasPrecedingLineBreak() && this.eat(35)) {\n      decl.definite = true;\n    }\n    const type = this.tsTryParseTypeAnnotation();\n    if (type) {\n      decl.id.typeAnnotation = type;\n      this.resetEndLocation(decl.id);\n    }\n  }\n  parseAsyncArrowFromCallExpression(node, call) {\n    if (this.match(14)) {\n      node.returnType = this.tsParseTypeAnnotation();\n    }\n    return super.parseAsyncArrowFromCallExpression(node, call);\n  }\n  parseMaybeAssign(refExpressionErrors, afterLeftParse) {\n    var _jsx, _jsx2, _typeCast, _jsx3, _typeCast2;\n    let state;\n    let jsx;\n    let typeCast;\n    if (this.hasPlugin(\"jsx\") && (this.match(143) || this.match(47))) {\n      state = this.state.clone();\n      jsx = this.tryParse(() => super.parseMaybeAssign(refExpressionErrors, afterLeftParse), state);\n      if (!jsx.error) return jsx.node;\n      const {\n        context\n      } = this.state;\n      const currentContext = context[context.length - 1];\n      if (currentContext === types.j_oTag || currentContext === types.j_expr) {\n        context.pop();\n      }\n    }\n    if (!((_jsx = jsx) != null && _jsx.error) && !this.match(47)) {\n      return super.parseMaybeAssign(refExpressionErrors, afterLeftParse);\n    }\n    if (!state || state === this.state) state = this.state.clone();\n    let typeParameters;\n    const arrow = this.tryParse(abort => {\n      var _expr$extra, _typeParameters;\n      typeParameters = this.tsParseTypeParameters(this.tsParseConstModifier);\n      const expr = super.parseMaybeAssign(refExpressionErrors, afterLeftParse);\n      if (expr.type !== \"ArrowFunctionExpression\" || (_expr$extra = expr.extra) != null && _expr$extra.parenthesized) {\n        abort();\n      }\n      if (((_typeParameters = typeParameters) == null ? void 0 : _typeParameters.params.length) !== 0) {\n        this.resetStartLocationFromNode(expr, typeParameters);\n      }\n      expr.typeParameters = typeParameters;\n      return expr;\n    }, state);\n    if (!arrow.error && !arrow.aborted) {\n      if (typeParameters) this.reportReservedArrowTypeParam(typeParameters);\n      return arrow.node;\n    }\n    if (!jsx) {\n      assert(!this.hasPlugin(\"jsx\"));\n      typeCast = this.tryParse(() => super.parseMaybeAssign(refExpressionErrors, afterLeftParse), state);\n      if (!typeCast.error) return typeCast.node;\n    }\n    if ((_jsx2 = jsx) != null && _jsx2.node) {\n      this.state = jsx.failState;\n      return jsx.node;\n    }\n    if (arrow.node) {\n      this.state = arrow.failState;\n      if (typeParameters) this.reportReservedArrowTypeParam(typeParameters);\n      return arrow.node;\n    }\n    if ((_typeCast = typeCast) != null && _typeCast.node) {\n      this.state = typeCast.failState;\n      return typeCast.node;\n    }\n    throw ((_jsx3 = jsx) == null ? void 0 : _jsx3.error) || arrow.error || ((_typeCast2 = typeCast) == null ? void 0 : _typeCast2.error);\n  }\n  reportReservedArrowTypeParam(node) {\n    var _node$extra2;\n    if (node.params.length === 1 && !node.params[0].constraint && !((_node$extra2 = node.extra) != null && _node$extra2.trailingComma) && this.getPluginOption(\"typescript\", \"disallowAmbiguousJSXLike\")) {\n      this.raise(TSErrors.ReservedArrowTypeParam, node);\n    }\n  }\n  parseMaybeUnary(refExpressionErrors, sawUnary) {\n    if (!this.hasPlugin(\"jsx\") && this.match(47)) {\n      return this.tsParseTypeAssertion();\n    }\n    return super.parseMaybeUnary(refExpressionErrors, sawUnary);\n  }\n  parseArrow(node) {\n    if (this.match(14)) {\n      const result = this.tryParse(abort => {\n        const returnType = this.tsParseTypeOrTypePredicateAnnotation(14);\n        if (this.canInsertSemicolon() || !this.match(19)) abort();\n        return returnType;\n      });\n      if (result.aborted) return;\n      if (!result.thrown) {\n        if (result.error) this.state = result.failState;\n        node.returnType = result.node;\n      }\n    }\n    return super.parseArrow(node);\n  }\n  parseFunctionParamType(param) {\n    if (this.eat(17)) {\n      param.optional = true;\n    }\n    const type = this.tsTryParseTypeAnnotation();\n    if (type) param.typeAnnotation = type;\n    this.resetEndLocation(param);\n    return param;\n  }\n  isAssignable(node, isBinding) {\n    switch (node.type) {\n      case \"TSTypeCastExpression\":\n        return this.isAssignable(node.expression, isBinding);\n      case \"TSParameterProperty\":\n        return true;\n      default:\n        return super.isAssignable(node, isBinding);\n    }\n  }\n  toAssignable(node, isLHS = false) {\n    switch (node.type) {\n      case \"ParenthesizedExpression\":\n        this.toAssignableParenthesizedExpression(node, isLHS);\n        break;\n      case \"TSAsExpression\":\n      case \"TSSatisfiesExpression\":\n      case \"TSNonNullExpression\":\n      case \"TSTypeAssertion\":\n        if (isLHS) {\n          this.expressionScope.recordArrowParameterBindingError(TSErrors.UnexpectedTypeCastInParameter, node);\n        } else {\n          this.raise(TSErrors.UnexpectedTypeCastInParameter, node);\n        }\n        this.toAssignable(node.expression, isLHS);\n        break;\n      case \"AssignmentExpression\":\n        if (!isLHS && node.left.type === \"TSTypeCastExpression\") {\n          node.left = this.typeCastToParameter(node.left);\n        }\n      default:\n        super.toAssignable(node, isLHS);\n    }\n  }\n  toAssignableParenthesizedExpression(node, isLHS) {\n    switch (node.expression.type) {\n      case \"TSAsExpression\":\n      case \"TSSatisfiesExpression\":\n      case \"TSNonNullExpression\":\n      case \"TSTypeAssertion\":\n      case \"ParenthesizedExpression\":\n        this.toAssignable(node.expression, isLHS);\n        break;\n      default:\n        super.toAssignable(node, isLHS);\n    }\n  }\n  checkToRestConversion(node, allowPattern) {\n    switch (node.type) {\n      case \"TSAsExpression\":\n      case \"TSSatisfiesExpression\":\n      case \"TSTypeAssertion\":\n      case \"TSNonNullExpression\":\n        this.checkToRestConversion(node.expression, false);\n        break;\n      default:\n        super.checkToRestConversion(node, allowPattern);\n    }\n  }\n  isValidLVal(type, disallowCallExpression, isUnparenthesizedInAssign, binding) {\n    switch (type) {\n      case \"TSTypeCastExpression\":\n        return true;\n      case \"TSParameterProperty\":\n        return \"parameter\";\n      case \"TSNonNullExpression\":\n        return \"expression\";\n      case \"TSAsExpression\":\n      case \"TSSatisfiesExpression\":\n      case \"TSTypeAssertion\":\n        return (binding !== 64 || !isUnparenthesizedInAssign) && [\"expression\", true];\n      default:\n        return super.isValidLVal(type, disallowCallExpression, isUnparenthesizedInAssign, binding);\n    }\n  }\n  parseBindingAtom() {\n    if (this.state.type === 78) {\n      return this.parseIdentifier(true);\n    }\n    return super.parseBindingAtom();\n  }\n  parseMaybeDecoratorArguments(expr, startLoc) {\n    if (this.match(47) || this.match(51)) {\n      const typeArguments = this.tsParseTypeArgumentsInExpression();\n      if (this.match(10)) {\n        const call = super.parseMaybeDecoratorArguments(expr, startLoc);\n        {\n          call.typeParameters = typeArguments;\n        }\n        return call;\n      }\n      this.unexpected(null, 10);\n    }\n    return super.parseMaybeDecoratorArguments(expr, startLoc);\n  }\n  checkCommaAfterRest(close) {\n    if (this.state.isAmbientContext && this.match(12) && this.lookaheadCharCode() === close) {\n      this.next();\n      return false;\n    }\n    return super.checkCommaAfterRest(close);\n  }\n  isClassMethod() {\n    return this.match(47) || super.isClassMethod();\n  }\n  isClassProperty() {\n    return this.match(35) || this.match(14) || super.isClassProperty();\n  }\n  parseMaybeDefault(startLoc, left) {\n    const node = super.parseMaybeDefault(startLoc, left);\n    if (node.type === \"AssignmentPattern\" && node.typeAnnotation && node.right.start < node.typeAnnotation.start) {\n      this.raise(TSErrors.TypeAnnotationAfterAssign, node.typeAnnotation);\n    }\n    return node;\n  }\n  getTokenFromCode(code) {\n    if (this.state.inType) {\n      if (code === 62) {\n        this.finishOp(48, 1);\n        return;\n      }\n      if (code === 60) {\n        this.finishOp(47, 1);\n        return;\n      }\n    }\n    super.getTokenFromCode(code);\n  }\n  reScan_lt_gt() {\n    const {\n      type\n    } = this.state;\n    if (type === 47) {\n      this.state.pos -= 1;\n      this.readToken_lt();\n    } else if (type === 48) {\n      this.state.pos -= 1;\n      this.readToken_gt();\n    }\n  }\n  reScan_lt() {\n    const {\n      type\n    } = this.state;\n    if (type === 51) {\n      this.state.pos -= 2;\n      this.finishOp(47, 1);\n      return 47;\n    }\n    return type;\n  }\n  toAssignableListItem(exprList, index, isLHS) {\n    const node = exprList[index];\n    if (node.type === \"TSTypeCastExpression\") {\n      exprList[index] = this.typeCastToParameter(node);\n    }\n    super.toAssignableListItem(exprList, index, isLHS);\n  }\n  typeCastToParameter(node) {\n    node.expression.typeAnnotation = node.typeAnnotation;\n    this.resetEndLocation(node.expression, node.typeAnnotation.loc.end);\n    return node.expression;\n  }\n  shouldParseArrow(params) {\n    if (this.match(14)) {\n      return params.every(expr => this.isAssignable(expr, true));\n    }\n    return super.shouldParseArrow(params);\n  }\n  shouldParseAsyncArrow() {\n    return this.match(14) || super.shouldParseAsyncArrow();\n  }\n  canHaveLeadingDecorator() {\n    return super.canHaveLeadingDecorator() || this.isAbstractClass();\n  }\n  jsxParseOpeningElementAfterName(node) {\n    if (this.match(47) || this.match(51)) {\n      const typeArguments = this.tsTryParseAndCatch(() => this.tsParseTypeArgumentsInExpression());\n      if (typeArguments) {\n        {\n          node.typeParameters = typeArguments;\n        }\n      }\n    }\n    return super.jsxParseOpeningElementAfterName(node);\n  }\n  getGetterSetterExpectedParamCount(method) {\n    const baseCount = super.getGetterSetterExpectedParamCount(method);\n    const params = this.getObjectOrClassMethodParams(method);\n    const firstParam = params[0];\n    const hasContextParam = firstParam && this.isThisParam(firstParam);\n    return hasContextParam ? baseCount + 1 : baseCount;\n  }\n  parseCatchClauseParam() {\n    const param = super.parseCatchClauseParam();\n    const type = this.tsTryParseTypeAnnotation();\n    if (type) {\n      param.typeAnnotation = type;\n      this.resetEndLocation(param);\n    }\n    return param;\n  }\n  tsInAmbientContext(cb) {\n    const {\n      isAmbientContext: oldIsAmbientContext,\n      strict: oldStrict\n    } = this.state;\n    this.state.isAmbientContext = true;\n    this.state.strict = false;\n    try {\n      return cb();\n    } finally {\n      this.state.isAmbientContext = oldIsAmbientContext;\n      this.state.strict = oldStrict;\n    }\n  }\n  parseClass(node, isStatement, optionalId) {\n    const oldInAbstractClass = this.state.inAbstractClass;\n    this.state.inAbstractClass = !!node.abstract;\n    try {\n      return super.parseClass(node, isStatement, optionalId);\n    } finally {\n      this.state.inAbstractClass = oldInAbstractClass;\n    }\n  }\n  tsParseAbstractDeclaration(node, decorators) {\n    if (this.match(80)) {\n      node.abstract = true;\n      return this.maybeTakeDecorators(decorators, this.parseClass(node, true, false));\n    } else if (this.isContextual(129)) {\n      if (!this.hasFollowingLineBreak()) {\n        node.abstract = true;\n        this.raise(TSErrors.NonClassMethodPropertyHasAbstractModifier, node);\n        return this.tsParseInterfaceDeclaration(node);\n      } else {\n        return null;\n      }\n    }\n    throw this.unexpected(null, 80);\n  }\n  parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope) {\n    const method = super.parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope);\n    if (method.abstract || method.type === \"TSAbstractMethodDefinition\") {\n      const hasEstreePlugin = this.hasPlugin(\"estree\");\n      const methodFn = hasEstreePlugin ? method.value : method;\n      if (methodFn.body) {\n        const {\n          key\n        } = method;\n        this.raise(TSErrors.AbstractMethodHasImplementation, method, {\n          methodName: key.type === \"Identifier\" && !method.computed ? key.name : `[${this.input.slice(this.offsetToSourcePos(key.start), this.offsetToSourcePos(key.end))}]`\n        });\n      }\n    }\n    return method;\n  }\n  tsParseTypeParameterName() {\n    const typeName = this.parseIdentifier();\n    return typeName.name;\n  }\n  shouldParseAsAmbientContext() {\n    return !!this.getPluginOption(\"typescript\", \"dts\");\n  }\n  parse() {\n    if (this.shouldParseAsAmbientContext()) {\n      this.state.isAmbientContext = true;\n    }\n    return super.parse();\n  }\n  getExpression() {\n    if (this.shouldParseAsAmbientContext()) {\n      this.state.isAmbientContext = true;\n    }\n    return super.getExpression();\n  }\n  parseExportSpecifier(node, isString, isInTypeExport, isMaybeTypeOnly) {\n    if (!isString && isMaybeTypeOnly) {\n      this.parseTypeOnlyImportExportSpecifier(node, false, isInTypeExport);\n      return this.finishNode(node, \"ExportSpecifier\");\n    }\n    node.exportKind = \"value\";\n    return super.parseExportSpecifier(node, isString, isInTypeExport, isMaybeTypeOnly);\n  }\n  parseImportSpecifier(specifier, importedIsString, isInTypeOnlyImport, isMaybeTypeOnly, bindingType) {\n    if (!importedIsString && isMaybeTypeOnly) {\n      this.parseTypeOnlyImportExportSpecifier(specifier, true, isInTypeOnlyImport);\n      return this.finishNode(specifier, \"ImportSpecifier\");\n    }\n    specifier.importKind = \"value\";\n    return super.parseImportSpecifier(specifier, importedIsString, isInTypeOnlyImport, isMaybeTypeOnly, isInTypeOnlyImport ? 4098 : 4096);\n  }\n  parseTypeOnlyImportExportSpecifier(node, isImport, isInTypeOnlyImportExport) {\n    const leftOfAsKey = isImport ? \"imported\" : \"local\";\n    const rightOfAsKey = isImport ? \"local\" : \"exported\";\n    let leftOfAs = node[leftOfAsKey];\n    let rightOfAs;\n    let hasTypeSpecifier = false;\n    let canParseAsKeyword = true;\n    const loc = leftOfAs.loc.start;\n    if (this.isContextual(93)) {\n      const firstAs = this.parseIdentifier();\n      if (this.isContextual(93)) {\n        const secondAs = this.parseIdentifier();\n        if (tokenIsKeywordOrIdentifier(this.state.type)) {\n          hasTypeSpecifier = true;\n          leftOfAs = firstAs;\n          rightOfAs = isImport ? this.parseIdentifier() : this.parseModuleExportName();\n          canParseAsKeyword = false;\n        } else {\n          rightOfAs = secondAs;\n          canParseAsKeyword = false;\n        }\n      } else if (tokenIsKeywordOrIdentifier(this.state.type)) {\n        canParseAsKeyword = false;\n        rightOfAs = isImport ? this.parseIdentifier() : this.parseModuleExportName();\n      } else {\n        hasTypeSpecifier = true;\n        leftOfAs = firstAs;\n      }\n    } else if (tokenIsKeywordOrIdentifier(this.state.type)) {\n      hasTypeSpecifier = true;\n      if (isImport) {\n        leftOfAs = this.parseIdentifier(true);\n        if (!this.isContextual(93)) {\n          this.checkReservedWord(leftOfAs.name, leftOfAs.loc.start, true, true);\n        }\n      } else {\n        leftOfAs = this.parseModuleExportName();\n      }\n    }\n    if (hasTypeSpecifier && isInTypeOnlyImportExport) {\n      this.raise(isImport ? TSErrors.TypeModifierIsUsedInTypeImports : TSErrors.TypeModifierIsUsedInTypeExports, loc);\n    }\n    node[leftOfAsKey] = leftOfAs;\n    node[rightOfAsKey] = rightOfAs;\n    const kindKey = isImport ? \"importKind\" : \"exportKind\";\n    node[kindKey] = hasTypeSpecifier ? \"type\" : \"value\";\n    if (canParseAsKeyword && this.eatContextual(93)) {\n      node[rightOfAsKey] = isImport ? this.parseIdentifier() : this.parseModuleExportName();\n    }\n    if (!node[rightOfAsKey]) {\n      node[rightOfAsKey] = this.cloneIdentifier(node[leftOfAsKey]);\n    }\n    if (isImport) {\n      this.checkIdentifier(node[rightOfAsKey], hasTypeSpecifier ? 4098 : 4096);\n    }\n  }\n  fillOptionalPropertiesForTSESLint(node) {\n    var _node$directive, _node$decorators, _node$optional, _node$typeAnnotation, _node$accessibility, _node$decorators2, _node$override, _node$readonly, _node$static, _node$declare, _node$returnType, _node$typeParameters, _node$optional2, _node$optional3, _node$accessibility2, _node$readonly2, _node$static2, _node$declare2, _node$definite, _node$readonly3, _node$typeAnnotation2, _node$accessibility3, _node$decorators3, _node$override2, _node$optional4, _node$id, _node$abstract, _node$declare3, _node$decorators4, _node$implements, _node$superTypeArgume, _node$typeParameters2, _node$declare4, _node$definite2, _node$const, _node$declare5, _node$computed, _node$qualifier, _node$options, _node$declare6, _node$extends, _node$optional5, _node$readonly4, _node$declare7, _node$global, _node$const2, _node$in, _node$out;\n    switch (node.type) {\n      case \"ExpressionStatement\":\n        (_node$directive = node.directive) != null ? _node$directive : node.directive = undefined;\n        return;\n      case \"RestElement\":\n        node.value = undefined;\n      case \"Identifier\":\n      case \"ArrayPattern\":\n      case \"AssignmentPattern\":\n      case \"ObjectPattern\":\n        (_node$decorators = node.decorators) != null ? _node$decorators : node.decorators = [];\n        (_node$optional = node.optional) != null ? _node$optional : node.optional = false;\n        (_node$typeAnnotation = node.typeAnnotation) != null ? _node$typeAnnotation : node.typeAnnotation = undefined;\n        return;\n      case \"TSParameterProperty\":\n        (_node$accessibility = node.accessibility) != null ? _node$accessibility : node.accessibility = undefined;\n        (_node$decorators2 = node.decorators) != null ? _node$decorators2 : node.decorators = [];\n        (_node$override = node.override) != null ? _node$override : node.override = false;\n        (_node$readonly = node.readonly) != null ? _node$readonly : node.readonly = false;\n        (_node$static = node.static) != null ? _node$static : node.static = false;\n        return;\n      case \"TSEmptyBodyFunctionExpression\":\n        node.body = null;\n      case \"TSDeclareFunction\":\n      case \"FunctionDeclaration\":\n      case \"FunctionExpression\":\n      case \"ClassMethod\":\n      case \"ClassPrivateMethod\":\n        (_node$declare = node.declare) != null ? _node$declare : node.declare = false;\n        (_node$returnType = node.returnType) != null ? _node$returnType : node.returnType = undefined;\n        (_node$typeParameters = node.typeParameters) != null ? _node$typeParameters : node.typeParameters = undefined;\n        return;\n      case \"Property\":\n        (_node$optional2 = node.optional) != null ? _node$optional2 : node.optional = false;\n        return;\n      case \"TSMethodSignature\":\n      case \"TSPropertySignature\":\n        (_node$optional3 = node.optional) != null ? _node$optional3 : node.optional = false;\n      case \"TSIndexSignature\":\n        (_node$accessibility2 = node.accessibility) != null ? _node$accessibility2 : node.accessibility = undefined;\n        (_node$readonly2 = node.readonly) != null ? _node$readonly2 : node.readonly = false;\n        (_node$static2 = node.static) != null ? _node$static2 : node.static = false;\n        return;\n      case \"TSAbstractPropertyDefinition\":\n      case \"PropertyDefinition\":\n      case \"TSAbstractAccessorProperty\":\n      case \"AccessorProperty\":\n        (_node$declare2 = node.declare) != null ? _node$declare2 : node.declare = false;\n        (_node$definite = node.definite) != null ? _node$definite : node.definite = false;\n        (_node$readonly3 = node.readonly) != null ? _node$readonly3 : node.readonly = false;\n        (_node$typeAnnotation2 = node.typeAnnotation) != null ? _node$typeAnnotation2 : node.typeAnnotation = undefined;\n      case \"TSAbstractMethodDefinition\":\n      case \"MethodDefinition\":\n        (_node$accessibility3 = node.accessibility) != null ? _node$accessibility3 : node.accessibility = undefined;\n        (_node$decorators3 = node.decorators) != null ? _node$decorators3 : node.decorators = [];\n        (_node$override2 = node.override) != null ? _node$override2 : node.override = false;\n        (_node$optional4 = node.optional) != null ? _node$optional4 : node.optional = false;\n        return;\n      case \"ClassExpression\":\n        (_node$id = node.id) != null ? _node$id : node.id = null;\n      case \"ClassDeclaration\":\n        (_node$abstract = node.abstract) != null ? _node$abstract : node.abstract = false;\n        (_node$declare3 = node.declare) != null ? _node$declare3 : node.declare = false;\n        (_node$decorators4 = node.decorators) != null ? _node$decorators4 : node.decorators = [];\n        (_node$implements = node.implements) != null ? _node$implements : node.implements = [];\n        (_node$superTypeArgume = node.superTypeArguments) != null ? _node$superTypeArgume : node.superTypeArguments = undefined;\n        (_node$typeParameters2 = node.typeParameters) != null ? _node$typeParameters2 : node.typeParameters = undefined;\n        return;\n      case \"TSTypeAliasDeclaration\":\n      case \"VariableDeclaration\":\n        (_node$declare4 = node.declare) != null ? _node$declare4 : node.declare = false;\n        return;\n      case \"VariableDeclarator\":\n        (_node$definite2 = node.definite) != null ? _node$definite2 : node.definite = false;\n        return;\n      case \"TSEnumDeclaration\":\n        (_node$const = node.const) != null ? _node$const : node.const = false;\n        (_node$declare5 = node.declare) != null ? _node$declare5 : node.declare = false;\n        return;\n      case \"TSEnumMember\":\n        (_node$computed = node.computed) != null ? _node$computed : node.computed = false;\n        return;\n      case \"TSImportType\":\n        (_node$qualifier = node.qualifier) != null ? _node$qualifier : node.qualifier = null;\n        (_node$options = node.options) != null ? _node$options : node.options = null;\n        return;\n      case \"TSInterfaceDeclaration\":\n        (_node$declare6 = node.declare) != null ? _node$declare6 : node.declare = false;\n        (_node$extends = node.extends) != null ? _node$extends : node.extends = [];\n        return;\n      case \"TSMappedType\":\n        (_node$optional5 = node.optional) != null ? _node$optional5 : node.optional = false;\n        (_node$readonly4 = node.readonly) != null ? _node$readonly4 : node.readonly = undefined;\n        return;\n      case \"TSModuleDeclaration\":\n        (_node$declare7 = node.declare) != null ? _node$declare7 : node.declare = false;\n        (_node$global = node.global) != null ? _node$global : node.global = node.kind === \"global\";\n        return;\n      case \"TSTypeParameter\":\n        (_node$const2 = node.const) != null ? _node$const2 : node.const = false;\n        (_node$in = node.in) != null ? _node$in : node.in = false;\n        (_node$out = node.out) != null ? _node$out : node.out = false;\n        return;\n    }\n  }\n  chStartsBindingIdentifierAndNotRelationalOperator(ch, pos) {\n    if (isIdentifierStart(ch)) {\n      keywordAndTSRelationalOperator.lastIndex = pos;\n      if (keywordAndTSRelationalOperator.test(this.input)) {\n        const endCh = this.codePointAtPos(keywordAndTSRelationalOperator.lastIndex);\n        if (!isIdentifierChar(endCh) && endCh !== 92) {\n          return false;\n        }\n      }\n      return true;\n    } else if (ch === 92) {\n      return true;\n    } else {\n      return false;\n    }\n  }\n  nextTokenIsIdentifierAndNotTSRelationalOperatorOnSameLine() {\n    const next = this.nextTokenInLineStart();\n    const nextCh = this.codePointAtPos(next);\n    return this.chStartsBindingIdentifierAndNotRelationalOperator(nextCh, next);\n  }\n  nextTokenIsIdentifierOrStringLiteralOnSameLine() {\n    const next = this.nextTokenInLineStart();\n    const nextCh = this.codePointAtPos(next);\n    return this.chStartsBindingIdentifier(nextCh, next) || nextCh === 34 || nextCh === 39;\n  }\n};\nfunction isPossiblyLiteralEnum(expression) {\n  if (expression.type !== \"MemberExpression\") return false;\n  const {\n    computed,\n    property\n  } = expression;\n  if (computed && property.type !== \"StringLiteral\" && (property.type !== \"TemplateLiteral\" || property.expressions.length > 0)) {\n    return false;\n  }\n  return isUncomputedMemberExpressionChain(expression.object);\n}\nfunction isValidAmbientConstInitializer(expression, estree) {\n  var _expression$extra;\n  const {\n    type\n  } = expression;\n  if ((_expression$extra = expression.extra) != null && _expression$extra.parenthesized) {\n    return false;\n  }\n  if (estree) {\n    if (type === \"Literal\") {\n      const {\n        value\n      } = expression;\n      if (typeof value === \"string\" || typeof value === \"boolean\") {\n        return true;\n      }\n    }\n  } else {\n    if (type === \"StringLiteral\" || type === \"BooleanLiteral\") {\n      return true;\n    }\n  }\n  if (isNumber(expression, estree) || isNegativeNumber(expression, estree)) {\n    return true;\n  }\n  if (type === \"TemplateLiteral\" && expression.expressions.length === 0) {\n    return true;\n  }\n  if (isPossiblyLiteralEnum(expression)) {\n    return true;\n  }\n  return false;\n}\nfunction isNumber(expression, estree) {\n  if (estree) {\n    return expression.type === \"Literal\" && (typeof expression.value === \"number\" || \"bigint\" in expression);\n  }\n  return expression.type === \"NumericLiteral\" || expression.type === \"BigIntLiteral\";\n}\nfunction isNegativeNumber(expression, estree) {\n  if (expression.type === \"UnaryExpression\") {\n    const {\n      operator,\n      argument\n    } = expression;\n    if (operator === \"-\" && isNumber(argument, estree)) {\n      return true;\n    }\n  }\n  return false;\n}\nfunction isUncomputedMemberExpressionChain(expression) {\n  if (expression.type === \"Identifier\") return true;\n  if (expression.type !== \"MemberExpression\" || expression.computed) {\n    return false;\n  }\n  return isUncomputedMemberExpressionChain(expression.object);\n}\nconst PlaceholderErrors = ParseErrorEnum`placeholders`({\n  ClassNameIsRequired: \"A class name is required.\",\n  UnexpectedSpace: \"Unexpected space in placeholder.\"\n});\nvar placeholders = superClass => class PlaceholdersParserMixin extends superClass {\n  parsePlaceholder(expectedNode) {\n    if (this.match(133)) {\n      const node = this.startNode();\n      this.next();\n      this.assertNoSpace();\n      node.name = super.parseIdentifier(true);\n      this.assertNoSpace();\n      this.expect(133);\n      return this.finishPlaceholder(node, expectedNode);\n    }\n  }\n  finishPlaceholder(node, expectedNode) {\n    let placeholder = node;\n    if (!placeholder.expectedNode || !placeholder.type) {\n      placeholder = this.finishNode(placeholder, \"Placeholder\");\n    }\n    placeholder.expectedNode = expectedNode;\n    return placeholder;\n  }\n  getTokenFromCode(code) {\n    if (code === 37 && this.input.charCodeAt(this.state.pos + 1) === 37) {\n      this.finishOp(133, 2);\n    } else {\n      super.getTokenFromCode(code);\n    }\n  }\n  parseExprAtom(refExpressionErrors) {\n    return this.parsePlaceholder(\"Expression\") || super.parseExprAtom(refExpressionErrors);\n  }\n  parseIdentifier(liberal) {\n    return this.parsePlaceholder(\"Identifier\") || super.parseIdentifier(liberal);\n  }\n  checkReservedWord(word, startLoc, checkKeywords, isBinding) {\n    if (word !== undefined) {\n      super.checkReservedWord(word, startLoc, checkKeywords, isBinding);\n    }\n  }\n  cloneIdentifier(node) {\n    const cloned = super.cloneIdentifier(node);\n    if (cloned.type === \"Placeholder\") {\n      cloned.expectedNode = node.expectedNode;\n    }\n    return cloned;\n  }\n  cloneStringLiteral(node) {\n    if (node.type === \"Placeholder\") {\n      return this.cloneIdentifier(node);\n    }\n    return super.cloneStringLiteral(node);\n  }\n  parseBindingAtom() {\n    return this.parsePlaceholder(\"Pattern\") || super.parseBindingAtom();\n  }\n  isValidLVal(type, disallowCallExpression, isParenthesized, binding) {\n    return type === \"Placeholder\" || super.isValidLVal(type, disallowCallExpression, isParenthesized, binding);\n  }\n  toAssignable(node, isLHS) {\n    if (node && node.type === \"Placeholder\" && node.expectedNode === \"Expression\") {\n      node.expectedNode = \"Pattern\";\n    } else {\n      super.toAssignable(node, isLHS);\n    }\n  }\n  chStartsBindingIdentifier(ch, pos) {\n    if (super.chStartsBindingIdentifier(ch, pos)) {\n      return true;\n    }\n    const next = this.nextTokenStart();\n    if (this.input.charCodeAt(next) === 37 && this.input.charCodeAt(next + 1) === 37) {\n      return true;\n    }\n    return false;\n  }\n  verifyBreakContinue(node, isBreak) {\n    if (node.label && node.label.type === \"Placeholder\") return;\n    super.verifyBreakContinue(node, isBreak);\n  }\n  parseExpressionStatement(node, expr) {\n    var _expr$extra;\n    if (expr.type !== \"Placeholder\" || (_expr$extra = expr.extra) != null && _expr$extra.parenthesized) {\n      return super.parseExpressionStatement(node, expr);\n    }\n    if (this.match(14)) {\n      const stmt = node;\n      stmt.label = this.finishPlaceholder(expr, \"Identifier\");\n      this.next();\n      stmt.body = super.parseStatementOrSloppyAnnexBFunctionDeclaration();\n      return this.finishNode(stmt, \"LabeledStatement\");\n    }\n    this.semicolon();\n    const stmtPlaceholder = node;\n    stmtPlaceholder.name = expr.name;\n    return this.finishPlaceholder(stmtPlaceholder, \"Statement\");\n  }\n  parseBlock(allowDirectives, createNewLexicalScope, afterBlockParse) {\n    return this.parsePlaceholder(\"BlockStatement\") || super.parseBlock(allowDirectives, createNewLexicalScope, afterBlockParse);\n  }\n  parseFunctionId(requireId) {\n    return this.parsePlaceholder(\"Identifier\") || super.parseFunctionId(requireId);\n  }\n  parseClass(node, isStatement, optionalId) {\n    const type = isStatement ? \"ClassDeclaration\" : \"ClassExpression\";\n    this.next();\n    const oldStrict = this.state.strict;\n    const placeholder = this.parsePlaceholder(\"Identifier\");\n    if (placeholder) {\n      if (this.match(81) || this.match(133) || this.match(5)) {\n        node.id = placeholder;\n      } else if (optionalId || !isStatement) {\n        node.id = null;\n        node.body = this.finishPlaceholder(placeholder, \"ClassBody\");\n        return this.finishNode(node, type);\n      } else {\n        throw this.raise(PlaceholderErrors.ClassNameIsRequired, this.state.startLoc);\n      }\n    } else {\n      this.parseClassId(node, isStatement, optionalId);\n    }\n    super.parseClassSuper(node);\n    node.body = this.parsePlaceholder(\"ClassBody\") || super.parseClassBody(!!node.superClass, oldStrict);\n    return this.finishNode(node, type);\n  }\n  parseExport(node, decorators) {\n    const placeholder = this.parsePlaceholder(\"Identifier\");\n    if (!placeholder) return super.parseExport(node, decorators);\n    const node2 = node;\n    if (!this.isContextual(98) && !this.match(12)) {\n      node2.specifiers = [];\n      node2.source = null;\n      node2.declaration = this.finishPlaceholder(placeholder, \"Declaration\");\n      return this.finishNode(node2, \"ExportNamedDeclaration\");\n    }\n    this.expectPlugin(\"exportDefaultFrom\");\n    const specifier = this.startNode();\n    specifier.exported = placeholder;\n    node2.specifiers = [this.finishNode(specifier, \"ExportDefaultSpecifier\")];\n    return super.parseExport(node2, decorators);\n  }\n  isExportDefaultSpecifier() {\n    if (this.match(65)) {\n      const next = this.nextTokenStart();\n      if (this.isUnparsedContextual(next, \"from\")) {\n        if (this.input.startsWith(tokenLabelName(133), this.nextTokenStartSince(next + 4))) {\n          return true;\n        }\n      }\n    }\n    return super.isExportDefaultSpecifier();\n  }\n  maybeParseExportDefaultSpecifier(node, maybeDefaultIdentifier) {\n    var _specifiers;\n    if ((_specifiers = node.specifiers) != null && _specifiers.length) {\n      return true;\n    }\n    return super.maybeParseExportDefaultSpecifier(node, maybeDefaultIdentifier);\n  }\n  checkExport(node) {\n    const {\n      specifiers\n    } = node;\n    if (specifiers != null && specifiers.length) {\n      node.specifiers = specifiers.filter(node => node.exported.type === \"Placeholder\");\n    }\n    super.checkExport(node);\n    node.specifiers = specifiers;\n  }\n  parseImport(node) {\n    const placeholder = this.parsePlaceholder(\"Identifier\");\n    if (!placeholder) return super.parseImport(node);\n    node.specifiers = [];\n    if (!this.isContextual(98) && !this.match(12)) {\n      node.source = this.finishPlaceholder(placeholder, \"StringLiteral\");\n      this.semicolon();\n      return this.finishNode(node, \"ImportDeclaration\");\n    }\n    const specifier = this.startNodeAtNode(placeholder);\n    specifier.local = placeholder;\n    node.specifiers.push(this.finishNode(specifier, \"ImportDefaultSpecifier\"));\n    if (this.eat(12)) {\n      const hasStarImport = this.maybeParseStarImportSpecifier(node);\n      if (!hasStarImport) this.parseNamedImportSpecifiers(node);\n    }\n    this.expectContextual(98);\n    node.source = this.parseImportSource();\n    this.semicolon();\n    return this.finishNode(node, \"ImportDeclaration\");\n  }\n  parseImportSource() {\n    return this.parsePlaceholder(\"StringLiteral\") || super.parseImportSource();\n  }\n  assertNoSpace() {\n    if (this.state.start > this.offsetToSourcePos(this.state.lastTokEndLoc.index)) {\n      this.raise(PlaceholderErrors.UnexpectedSpace, this.state.lastTokEndLoc);\n    }\n  }\n};\nvar v8intrinsic = superClass => class V8IntrinsicMixin extends superClass {\n  parseV8Intrinsic() {\n    if (this.match(54)) {\n      const v8IntrinsicStartLoc = this.state.startLoc;\n      const node = this.startNode();\n      this.next();\n      if (tokenIsIdentifier(this.state.type)) {\n        const name = this.parseIdentifierName();\n        const identifier = this.createIdentifier(node, name);\n        this.castNodeTo(identifier, \"V8IntrinsicIdentifier\");\n        if (this.match(10)) {\n          return identifier;\n        }\n      }\n      this.unexpected(v8IntrinsicStartLoc);\n    }\n  }\n  parseExprAtom(refExpressionErrors) {\n    return this.parseV8Intrinsic() || super.parseExprAtom(refExpressionErrors);\n  }\n};\nconst PIPELINE_PROPOSALS = [\"minimal\", \"fsharp\", \"hack\", \"smart\"];\nconst TOPIC_TOKENS = [\"^^\", \"@@\", \"^\", \"%\", \"#\"];\nfunction validatePlugins(pluginsMap) {\n  if (pluginsMap.has(\"decorators\")) {\n    if (pluginsMap.has(\"decorators-legacy\")) {\n      throw new Error(\"Cannot use the decorators and decorators-legacy plugin together\");\n    }\n    const decoratorsBeforeExport = pluginsMap.get(\"decorators\").decoratorsBeforeExport;\n    if (decoratorsBeforeExport != null && typeof decoratorsBeforeExport !== \"boolean\") {\n      throw new Error(\"'decoratorsBeforeExport' must be a boolean, if specified.\");\n    }\n    const allowCallParenthesized = pluginsMap.get(\"decorators\").allowCallParenthesized;\n    if (allowCallParenthesized != null && typeof allowCallParenthesized !== \"boolean\") {\n      throw new Error(\"'allowCallParenthesized' must be a boolean.\");\n    }\n  }\n  if (pluginsMap.has(\"flow\") && pluginsMap.has(\"typescript\")) {\n    throw new Error(\"Cannot combine flow and typescript plugins.\");\n  }\n  if (pluginsMap.has(\"placeholders\") && pluginsMap.has(\"v8intrinsic\")) {\n    throw new Error(\"Cannot combine placeholders and v8intrinsic plugins.\");\n  }\n  if (pluginsMap.has(\"pipelineOperator\")) {\n    var _pluginsMap$get2;\n    const proposal = pluginsMap.get(\"pipelineOperator\").proposal;\n    if (!PIPELINE_PROPOSALS.includes(proposal)) {\n      const proposalList = PIPELINE_PROPOSALS.map(p => `\"${p}\"`).join(\", \");\n      throw new Error(`\"pipelineOperator\" requires \"proposal\" option whose value must be one of: ${proposalList}.`);\n    }\n    if (proposal === \"hack\") {\n      if (pluginsMap.has(\"placeholders\")) {\n        throw new Error(\"Cannot combine placeholders plugin and Hack-style pipes.\");\n      }\n      if (pluginsMap.has(\"v8intrinsic\")) {\n        throw new Error(\"Cannot combine v8intrinsic plugin and Hack-style pipes.\");\n      }\n      const topicToken = pluginsMap.get(\"pipelineOperator\").topicToken;\n      if (!TOPIC_TOKENS.includes(topicToken)) {\n        const tokenList = TOPIC_TOKENS.map(t => `\"${t}\"`).join(\", \");\n        throw new Error(`\"pipelineOperator\" in \"proposal\": \"hack\" mode also requires a \"topicToken\" option whose value must be one of: ${tokenList}.`);\n      }\n      {\n        var _pluginsMap$get;\n        if (topicToken === \"#\" && ((_pluginsMap$get = pluginsMap.get(\"recordAndTuple\")) == null ? void 0 : _pluginsMap$get.syntaxType) === \"hash\") {\n          throw new Error(`Plugin conflict between \\`[\"pipelineOperator\", { proposal: \"hack\", topicToken: \"#\" }]\\` and \\`${JSON.stringify([\"recordAndTuple\", pluginsMap.get(\"recordAndTuple\")])}\\`.`);\n        }\n      }\n    } else if (proposal === \"smart\" && ((_pluginsMap$get2 = pluginsMap.get(\"recordAndTuple\")) == null ? void 0 : _pluginsMap$get2.syntaxType) === \"hash\") {\n      throw new Error(`Plugin conflict between \\`[\"pipelineOperator\", { proposal: \"smart\" }]\\` and \\`${JSON.stringify([\"recordAndTuple\", pluginsMap.get(\"recordAndTuple\")])}\\`.`);\n    }\n  }\n  if (pluginsMap.has(\"moduleAttributes\")) {\n    {\n      if (pluginsMap.has(\"deprecatedImportAssert\") || pluginsMap.has(\"importAssertions\")) {\n        throw new Error(\"Cannot combine importAssertions, deprecatedImportAssert and moduleAttributes plugins.\");\n      }\n      const moduleAttributesVersionPluginOption = pluginsMap.get(\"moduleAttributes\").version;\n      if (moduleAttributesVersionPluginOption !== \"may-2020\") {\n        throw new Error(\"The 'moduleAttributes' plugin requires a 'version' option,\" + \" representing the last proposal update. Currently, the\" + \" only supported value is 'may-2020'.\");\n      }\n    }\n  }\n  if (pluginsMap.has(\"importAssertions\")) {\n    if (pluginsMap.has(\"deprecatedImportAssert\")) {\n      throw new Error(\"Cannot combine importAssertions and deprecatedImportAssert plugins.\");\n    }\n  }\n  if (!pluginsMap.has(\"deprecatedImportAssert\") && pluginsMap.has(\"importAttributes\") && pluginsMap.get(\"importAttributes\").deprecatedAssertSyntax) {\n    {\n      pluginsMap.set(\"deprecatedImportAssert\", {});\n    }\n  }\n  if (pluginsMap.has(\"recordAndTuple\")) {\n    {\n      const syntaxType = pluginsMap.get(\"recordAndTuple\").syntaxType;\n      if (syntaxType != null) {\n        const RECORD_AND_TUPLE_SYNTAX_TYPES = [\"hash\", \"bar\"];\n        if (!RECORD_AND_TUPLE_SYNTAX_TYPES.includes(syntaxType)) {\n          throw new Error(\"The 'syntaxType' option of the 'recordAndTuple' plugin must be one of: \" + RECORD_AND_TUPLE_SYNTAX_TYPES.map(p => `'${p}'`).join(\", \"));\n        }\n      }\n    }\n  }\n  if (pluginsMap.has(\"asyncDoExpressions\") && !pluginsMap.has(\"doExpressions\")) {\n    const error = new Error(\"'asyncDoExpressions' requires 'doExpressions', please add 'doExpressions' to parser plugins.\");\n    error.missingPlugins = \"doExpressions\";\n    throw error;\n  }\n  if (pluginsMap.has(\"optionalChainingAssign\") && pluginsMap.get(\"optionalChainingAssign\").version !== \"2023-07\") {\n    throw new Error(\"The 'optionalChainingAssign' plugin requires a 'version' option,\" + \" representing the last proposal update. Currently, the\" + \" only supported value is '2023-07'.\");\n  }\n  if (pluginsMap.has(\"discardBinding\") && pluginsMap.get(\"discardBinding\").syntaxType !== \"void\") {\n    throw new Error(\"The 'discardBinding' plugin requires a 'syntaxType' option. Currently the only supported value is 'void'.\");\n  }\n}\nconst mixinPlugins = {\n  estree,\n  jsx,\n  flow,\n  typescript,\n  v8intrinsic,\n  placeholders\n};\nconst mixinPluginNames = Object.keys(mixinPlugins);\nclass ExpressionParser extends LValParser {\n  checkProto(prop, isRecord, sawProto, refExpressionErrors) {\n    if (prop.type === \"SpreadElement\" || this.isObjectMethod(prop) || prop.computed || prop.shorthand) {\n      return sawProto;\n    }\n    const key = prop.key;\n    const name = key.type === \"Identifier\" ? key.name : key.value;\n    if (name === \"__proto__\") {\n      if (isRecord) {\n        this.raise(Errors.RecordNoProto, key);\n        return true;\n      }\n      if (sawProto) {\n        if (refExpressionErrors) {\n          if (refExpressionErrors.doubleProtoLoc === null) {\n            refExpressionErrors.doubleProtoLoc = key.loc.start;\n          }\n        } else {\n          this.raise(Errors.DuplicateProto, key);\n        }\n      }\n      return true;\n    }\n    return sawProto;\n  }\n  shouldExitDescending(expr, potentialArrowAt) {\n    return expr.type === \"ArrowFunctionExpression\" && this.offsetToSourcePos(expr.start) === potentialArrowAt;\n  }\n  getExpression() {\n    this.enterInitialScopes();\n    this.nextToken();\n    if (this.match(140)) {\n      throw this.raise(Errors.ParseExpressionEmptyInput, this.state.startLoc);\n    }\n    const expr = this.parseExpression();\n    if (!this.match(140)) {\n      throw this.raise(Errors.ParseExpressionExpectsEOF, this.state.startLoc, {\n        unexpected: this.input.codePointAt(this.state.start)\n      });\n    }\n    this.finalizeRemainingComments();\n    expr.comments = this.comments;\n    expr.errors = this.state.errors;\n    if (this.optionFlags & 256) {\n      expr.tokens = this.tokens;\n    }\n    return expr;\n  }\n  parseExpression(disallowIn, refExpressionErrors) {\n    if (disallowIn) {\n      return this.disallowInAnd(() => this.parseExpressionBase(refExpressionErrors));\n    }\n    return this.allowInAnd(() => this.parseExpressionBase(refExpressionErrors));\n  }\n  parseExpressionBase(refExpressionErrors) {\n    const startLoc = this.state.startLoc;\n    const expr = this.parseMaybeAssign(refExpressionErrors);\n    if (this.match(12)) {\n      const node = this.startNodeAt(startLoc);\n      node.expressions = [expr];\n      while (this.eat(12)) {\n        node.expressions.push(this.parseMaybeAssign(refExpressionErrors));\n      }\n      this.toReferencedList(node.expressions);\n      return this.finishNode(node, \"SequenceExpression\");\n    }\n    return expr;\n  }\n  parseMaybeAssignDisallowIn(refExpressionErrors, afterLeftParse) {\n    return this.disallowInAnd(() => this.parseMaybeAssign(refExpressionErrors, afterLeftParse));\n  }\n  parseMaybeAssignAllowIn(refExpressionErrors, afterLeftParse) {\n    return this.allowInAnd(() => this.parseMaybeAssign(refExpressionErrors, afterLeftParse));\n  }\n  setOptionalParametersError(refExpressionErrors) {\n    refExpressionErrors.optionalParametersLoc = this.state.startLoc;\n  }\n  parseMaybeAssign(refExpressionErrors, afterLeftParse) {\n    const startLoc = this.state.startLoc;\n    const isYield = this.isContextual(108);\n    if (isYield) {\n      if (this.prodParam.hasYield) {\n        this.next();\n        let left = this.parseYield(startLoc);\n        if (afterLeftParse) {\n          left = afterLeftParse.call(this, left, startLoc);\n        }\n        return left;\n      }\n    }\n    let ownExpressionErrors;\n    if (refExpressionErrors) {\n      ownExpressionErrors = false;\n    } else {\n      refExpressionErrors = new ExpressionErrors();\n      ownExpressionErrors = true;\n    }\n    const {\n      type\n    } = this.state;\n    if (type === 10 || tokenIsIdentifier(type)) {\n      this.state.potentialArrowAt = this.state.start;\n    }\n    let left = this.parseMaybeConditional(refExpressionErrors);\n    if (afterLeftParse) {\n      left = afterLeftParse.call(this, left, startLoc);\n    }\n    if (tokenIsAssignment(this.state.type)) {\n      const node = this.startNodeAt(startLoc);\n      const operator = this.state.value;\n      node.operator = operator;\n      if (this.match(29)) {\n        this.toAssignable(left, true);\n        node.left = left;\n        const startIndex = startLoc.index;\n        if (refExpressionErrors.doubleProtoLoc != null && refExpressionErrors.doubleProtoLoc.index >= startIndex) {\n          refExpressionErrors.doubleProtoLoc = null;\n        }\n        if (refExpressionErrors.shorthandAssignLoc != null && refExpressionErrors.shorthandAssignLoc.index >= startIndex) {\n          refExpressionErrors.shorthandAssignLoc = null;\n        }\n        if (refExpressionErrors.privateKeyLoc != null && refExpressionErrors.privateKeyLoc.index >= startIndex) {\n          this.checkDestructuringPrivate(refExpressionErrors);\n          refExpressionErrors.privateKeyLoc = null;\n        }\n        if (refExpressionErrors.voidPatternLoc != null && refExpressionErrors.voidPatternLoc.index >= startIndex) {\n          refExpressionErrors.voidPatternLoc = null;\n        }\n      } else {\n        node.left = left;\n      }\n      this.next();\n      node.right = this.parseMaybeAssign();\n      this.checkLVal(left, this.finishNode(node, \"AssignmentExpression\"), undefined, undefined, undefined, undefined, operator === \"||=\" || operator === \"&&=\" || operator === \"??=\");\n      return node;\n    } else if (ownExpressionErrors) {\n      this.checkExpressionErrors(refExpressionErrors, true);\n    }\n    if (isYield) {\n      const {\n        type\n      } = this.state;\n      const startsExpr = this.hasPlugin(\"v8intrinsic\") ? tokenCanStartExpression(type) : tokenCanStartExpression(type) && !this.match(54);\n      if (startsExpr && !this.isAmbiguousPrefixOrIdentifier()) {\n        this.raiseOverwrite(Errors.YieldNotInGeneratorFunction, startLoc);\n        return this.parseYield(startLoc);\n      }\n    }\n    return left;\n  }\n  parseMaybeConditional(refExpressionErrors) {\n    const startLoc = this.state.startLoc;\n    const potentialArrowAt = this.state.potentialArrowAt;\n    const expr = this.parseExprOps(refExpressionErrors);\n    if (this.shouldExitDescending(expr, potentialArrowAt)) {\n      return expr;\n    }\n    return this.parseConditional(expr, startLoc, refExpressionErrors);\n  }\n  parseConditional(expr, startLoc, refExpressionErrors) {\n    if (this.eat(17)) {\n      const node = this.startNodeAt(startLoc);\n      node.test = expr;\n      node.consequent = this.parseMaybeAssignAllowIn();\n      this.expect(14);\n      node.alternate = this.parseMaybeAssign();\n      return this.finishNode(node, \"ConditionalExpression\");\n    }\n    return expr;\n  }\n  parseMaybeUnaryOrPrivate(refExpressionErrors) {\n    return this.match(139) ? this.parsePrivateName() : this.parseMaybeUnary(refExpressionErrors);\n  }\n  parseExprOps(refExpressionErrors) {\n    const startLoc = this.state.startLoc;\n    const potentialArrowAt = this.state.potentialArrowAt;\n    const expr = this.parseMaybeUnaryOrPrivate(refExpressionErrors);\n    if (this.shouldExitDescending(expr, potentialArrowAt)) {\n      return expr;\n    }\n    return this.parseExprOp(expr, startLoc, -1);\n  }\n  parseExprOp(left, leftStartLoc, minPrec) {\n    if (this.isPrivateName(left)) {\n      const value = this.getPrivateNameSV(left);\n      if (minPrec >= tokenOperatorPrecedence(58) || !this.prodParam.hasIn || !this.match(58)) {\n        this.raise(Errors.PrivateInExpectedIn, left, {\n          identifierName: value\n        });\n      }\n      this.classScope.usePrivateName(value, left.loc.start);\n    }\n    const op = this.state.type;\n    if (tokenIsOperator(op) && (this.prodParam.hasIn || !this.match(58))) {\n      let prec = tokenOperatorPrecedence(op);\n      if (prec > minPrec) {\n        if (op === 39) {\n          this.expectPlugin(\"pipelineOperator\");\n          if (this.state.inFSharpPipelineDirectBody) {\n            return left;\n          }\n          this.checkPipelineAtInfixOperator(left, leftStartLoc);\n        }\n        const node = this.startNodeAt(leftStartLoc);\n        node.left = left;\n        node.operator = this.state.value;\n        const logical = op === 41 || op === 42;\n        const coalesce = op === 40;\n        if (coalesce) {\n          prec = tokenOperatorPrecedence(42);\n        }\n        this.next();\n        if (op === 39 && this.hasPlugin([\"pipelineOperator\", {\n          proposal: \"minimal\"\n        }])) {\n          if (this.state.type === 96 && this.prodParam.hasAwait) {\n            throw this.raise(Errors.UnexpectedAwaitAfterPipelineBody, this.state.startLoc);\n          }\n        }\n        node.right = this.parseExprOpRightExpr(op, prec);\n        const finishedNode = this.finishNode(node, logical || coalesce ? \"LogicalExpression\" : \"BinaryExpression\");\n        const nextOp = this.state.type;\n        if (coalesce && (nextOp === 41 || nextOp === 42) || logical && nextOp === 40) {\n          throw this.raise(Errors.MixingCoalesceWithLogical, this.state.startLoc);\n        }\n        return this.parseExprOp(finishedNode, leftStartLoc, minPrec);\n      }\n    }\n    return left;\n  }\n  parseExprOpRightExpr(op, prec) {\n    const startLoc = this.state.startLoc;\n    switch (op) {\n      case 39:\n        switch (this.getPluginOption(\"pipelineOperator\", \"proposal\")) {\n          case \"hack\":\n            return this.withTopicBindingContext(() => {\n              return this.parseHackPipeBody();\n            });\n          case \"fsharp\":\n            return this.withSoloAwaitPermittingContext(() => {\n              return this.parseFSharpPipelineBody(prec);\n            });\n        }\n        if (this.getPluginOption(\"pipelineOperator\", \"proposal\") === \"smart\") {\n          return this.withTopicBindingContext(() => {\n            if (this.prodParam.hasYield && this.isContextual(108)) {\n              throw this.raise(Errors.PipeBodyIsTighter, this.state.startLoc);\n            }\n            return this.parseSmartPipelineBodyInStyle(this.parseExprOpBaseRightExpr(op, prec), startLoc);\n          });\n        }\n      default:\n        return this.parseExprOpBaseRightExpr(op, prec);\n    }\n  }\n  parseExprOpBaseRightExpr(op, prec) {\n    const startLoc = this.state.startLoc;\n    return this.parseExprOp(this.parseMaybeUnaryOrPrivate(), startLoc, tokenIsRightAssociative(op) ? prec - 1 : prec);\n  }\n  parseHackPipeBody() {\n    var _body$extra;\n    const {\n      startLoc\n    } = this.state;\n    const body = this.parseMaybeAssign();\n    const requiredParentheses = UnparenthesizedPipeBodyDescriptions.has(body.type);\n    if (requiredParentheses && !((_body$extra = body.extra) != null && _body$extra.parenthesized)) {\n      this.raise(Errors.PipeUnparenthesizedBody, startLoc, {\n        type: body.type\n      });\n    }\n    if (!this.topicReferenceWasUsedInCurrentContext()) {\n      this.raise(Errors.PipeTopicUnused, startLoc);\n    }\n    return body;\n  }\n  checkExponentialAfterUnary(node) {\n    if (this.match(57)) {\n      this.raise(Errors.UnexpectedTokenUnaryExponentiation, node.argument);\n    }\n  }\n  parseMaybeUnary(refExpressionErrors, sawUnary) {\n    const startLoc = this.state.startLoc;\n    const isAwait = this.isContextual(96);\n    if (isAwait && this.recordAwaitIfAllowed()) {\n      this.next();\n      const expr = this.parseAwait(startLoc);\n      if (!sawUnary) this.checkExponentialAfterUnary(expr);\n      return expr;\n    }\n    const update = this.match(34);\n    const node = this.startNode();\n    if (tokenIsPrefix(this.state.type)) {\n      node.operator = this.state.value;\n      node.prefix = true;\n      if (this.match(72)) {\n        this.expectPlugin(\"throwExpressions\");\n      }\n      const isDelete = this.match(89);\n      this.next();\n      node.argument = this.parseMaybeUnary(null, true);\n      this.checkExpressionErrors(refExpressionErrors, true);\n      if (this.state.strict && isDelete) {\n        const arg = node.argument;\n        if (arg.type === \"Identifier\") {\n          this.raise(Errors.StrictDelete, node);\n        } else if (this.hasPropertyAsPrivateName(arg)) {\n          this.raise(Errors.DeletePrivateField, node);\n        }\n      }\n      if (!update) {\n        if (!sawUnary) {\n          this.checkExponentialAfterUnary(node);\n        }\n        return this.finishNode(node, \"UnaryExpression\");\n      }\n    }\n    const expr = this.parseUpdate(node, update, refExpressionErrors);\n    if (isAwait) {\n      const {\n        type\n      } = this.state;\n      const startsExpr = this.hasPlugin(\"v8intrinsic\") ? tokenCanStartExpression(type) : tokenCanStartExpression(type) && !this.match(54);\n      if (startsExpr && !this.isAmbiguousPrefixOrIdentifier()) {\n        this.raiseOverwrite(Errors.AwaitNotInAsyncContext, startLoc);\n        return this.parseAwait(startLoc);\n      }\n    }\n    return expr;\n  }\n  parseUpdate(node, update, refExpressionErrors) {\n    if (update) {\n      const updateExpressionNode = node;\n      this.checkLVal(updateExpressionNode.argument, this.finishNode(updateExpressionNode, \"UpdateExpression\"));\n      return node;\n    }\n    const startLoc = this.state.startLoc;\n    let expr = this.parseExprSubscripts(refExpressionErrors);\n    if (this.checkExpressionErrors(refExpressionErrors, false)) return expr;\n    while (tokenIsPostfix(this.state.type) && !this.canInsertSemicolon()) {\n      const node = this.startNodeAt(startLoc);\n      node.operator = this.state.value;\n      node.prefix = false;\n      node.argument = expr;\n      this.next();\n      this.checkLVal(expr, expr = this.finishNode(node, \"UpdateExpression\"));\n    }\n    return expr;\n  }\n  parseExprSubscripts(refExpressionErrors) {\n    const startLoc = this.state.startLoc;\n    const potentialArrowAt = this.state.potentialArrowAt;\n    const expr = this.parseExprAtom(refExpressionErrors);\n    if (this.shouldExitDescending(expr, potentialArrowAt)) {\n      return expr;\n    }\n    return this.parseSubscripts(expr, startLoc);\n  }\n  parseSubscripts(base, startLoc, noCalls) {\n    const state = {\n      optionalChainMember: false,\n      maybeAsyncArrow: this.atPossibleAsyncArrow(base),\n      stop: false\n    };\n    do {\n      base = this.parseSubscript(base, startLoc, noCalls, state);\n      state.maybeAsyncArrow = false;\n    } while (!state.stop);\n    return base;\n  }\n  parseSubscript(base, startLoc, noCalls, state) {\n    const {\n      type\n    } = this.state;\n    if (!noCalls && type === 15) {\n      return this.parseBind(base, startLoc, noCalls, state);\n    } else if (tokenIsTemplate(type)) {\n      return this.parseTaggedTemplateExpression(base, startLoc, state);\n    }\n    let optional = false;\n    if (type === 18) {\n      if (noCalls) {\n        this.raise(Errors.OptionalChainingNoNew, this.state.startLoc);\n        if (this.lookaheadCharCode() === 40) {\n          return this.stopParseSubscript(base, state);\n        }\n      }\n      state.optionalChainMember = optional = true;\n      this.next();\n    }\n    if (!noCalls && this.match(10)) {\n      return this.parseCoverCallAndAsyncArrowHead(base, startLoc, state, optional);\n    } else {\n      const computed = this.eat(0);\n      if (computed || optional || this.eat(16)) {\n        return this.parseMember(base, startLoc, state, computed, optional);\n      } else {\n        return this.stopParseSubscript(base, state);\n      }\n    }\n  }\n  stopParseSubscript(base, state) {\n    state.stop = true;\n    return base;\n  }\n  parseMember(base, startLoc, state, computed, optional) {\n    const node = this.startNodeAt(startLoc);\n    node.object = base;\n    node.computed = computed;\n    if (computed) {\n      node.property = this.parseExpression();\n      this.expect(3);\n    } else if (this.match(139)) {\n      if (base.type === \"Super\") {\n        this.raise(Errors.SuperPrivateField, startLoc);\n      }\n      this.classScope.usePrivateName(this.state.value, this.state.startLoc);\n      node.property = this.parsePrivateName();\n    } else {\n      node.property = this.parseIdentifier(true);\n    }\n    if (state.optionalChainMember) {\n      node.optional = optional;\n      return this.finishNode(node, \"OptionalMemberExpression\");\n    } else {\n      return this.finishNode(node, \"MemberExpression\");\n    }\n  }\n  parseBind(base, startLoc, noCalls, state) {\n    const node = this.startNodeAt(startLoc);\n    node.object = base;\n    this.next();\n    node.callee = this.parseNoCallExpr();\n    state.stop = true;\n    return this.parseSubscripts(this.finishNode(node, \"BindExpression\"), startLoc, noCalls);\n  }\n  parseCoverCallAndAsyncArrowHead(base, startLoc, state, optional) {\n    const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;\n    let refExpressionErrors = null;\n    this.state.maybeInArrowParameters = true;\n    this.next();\n    const node = this.startNodeAt(startLoc);\n    node.callee = base;\n    const {\n      maybeAsyncArrow,\n      optionalChainMember\n    } = state;\n    if (maybeAsyncArrow) {\n      this.expressionScope.enter(newAsyncArrowScope());\n      refExpressionErrors = new ExpressionErrors();\n    }\n    if (optionalChainMember) {\n      node.optional = optional;\n    }\n    if (optional) {\n      node.arguments = this.parseCallExpressionArguments();\n    } else {\n      node.arguments = this.parseCallExpressionArguments(base.type !== \"Super\", node, refExpressionErrors);\n    }\n    let finishedNode = this.finishCallExpression(node, optionalChainMember);\n    if (maybeAsyncArrow && this.shouldParseAsyncArrow() && !optional) {\n      state.stop = true;\n      this.checkDestructuringPrivate(refExpressionErrors);\n      this.expressionScope.validateAsPattern();\n      this.expressionScope.exit();\n      finishedNode = this.parseAsyncArrowFromCallExpression(this.startNodeAt(startLoc), finishedNode);\n    } else {\n      if (maybeAsyncArrow) {\n        this.checkExpressionErrors(refExpressionErrors, true);\n        this.expressionScope.exit();\n      }\n      this.toReferencedArguments(finishedNode);\n    }\n    this.state.maybeInArrowParameters = oldMaybeInArrowParameters;\n    return finishedNode;\n  }\n  toReferencedArguments(node, isParenthesizedExpr) {\n    this.toReferencedListDeep(node.arguments, isParenthesizedExpr);\n  }\n  parseTaggedTemplateExpression(base, startLoc, state) {\n    const node = this.startNodeAt(startLoc);\n    node.tag = base;\n    node.quasi = this.parseTemplate(true);\n    if (state.optionalChainMember) {\n      this.raise(Errors.OptionalChainingNoTemplate, startLoc);\n    }\n    return this.finishNode(node, \"TaggedTemplateExpression\");\n  }\n  atPossibleAsyncArrow(base) {\n    return base.type === \"Identifier\" && base.name === \"async\" && this.state.lastTokEndLoc.index === base.end && !this.canInsertSemicolon() && base.end - base.start === 5 && this.offsetToSourcePos(base.start) === this.state.potentialArrowAt;\n  }\n  finishCallExpression(node, optional) {\n    if (node.callee.type === \"Import\") {\n      if (node.arguments.length === 0 || node.arguments.length > 2) {\n        this.raise(Errors.ImportCallArity, node);\n      } else {\n        for (const arg of node.arguments) {\n          if (arg.type === \"SpreadElement\") {\n            this.raise(Errors.ImportCallSpreadArgument, arg);\n          }\n        }\n      }\n    }\n    return this.finishNode(node, optional ? \"OptionalCallExpression\" : \"CallExpression\");\n  }\n  parseCallExpressionArguments(allowPlaceholder, nodeForExtra, refExpressionErrors) {\n    const elts = [];\n    let first = true;\n    const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;\n    this.state.inFSharpPipelineDirectBody = false;\n    while (!this.eat(11)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12);\n        if (this.match(11)) {\n          if (nodeForExtra) {\n            this.addTrailingCommaExtraToNode(nodeForExtra);\n          }\n          this.next();\n          break;\n        }\n      }\n      elts.push(this.parseExprListItem(11, false, refExpressionErrors, allowPlaceholder));\n    }\n    this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody;\n    return elts;\n  }\n  shouldParseAsyncArrow() {\n    return this.match(19) && !this.canInsertSemicolon();\n  }\n  parseAsyncArrowFromCallExpression(node, call) {\n    var _call$extra;\n    this.resetPreviousNodeTrailingComments(call);\n    this.expect(19);\n    this.parseArrowExpression(node, call.arguments, true, (_call$extra = call.extra) == null ? void 0 : _call$extra.trailingCommaLoc);\n    if (call.innerComments) {\n      setInnerComments(node, call.innerComments);\n    }\n    if (call.callee.trailingComments) {\n      setInnerComments(node, call.callee.trailingComments);\n    }\n    return node;\n  }\n  parseNoCallExpr() {\n    const startLoc = this.state.startLoc;\n    return this.parseSubscripts(this.parseExprAtom(), startLoc, true);\n  }\n  parseExprAtom(refExpressionErrors) {\n    let node;\n    let decorators = null;\n    const {\n      type\n    } = this.state;\n    switch (type) {\n      case 79:\n        return this.parseSuper();\n      case 83:\n        node = this.startNode();\n        this.next();\n        if (this.match(16)) {\n          return this.parseImportMetaPropertyOrPhaseCall(node);\n        }\n        if (this.match(10)) {\n          if (this.optionFlags & 512) {\n            return this.parseImportCall(node);\n          } else {\n            return this.finishNode(node, \"Import\");\n          }\n        } else {\n          this.raise(Errors.UnsupportedImport, this.state.lastTokStartLoc);\n          return this.finishNode(node, \"Import\");\n        }\n      case 78:\n        node = this.startNode();\n        this.next();\n        return this.finishNode(node, \"ThisExpression\");\n      case 90:\n        {\n          return this.parseDo(this.startNode(), false);\n        }\n      case 56:\n      case 31:\n        {\n          this.readRegexp();\n          return this.parseRegExpLiteral(this.state.value);\n        }\n      case 135:\n        return this.parseNumericLiteral(this.state.value);\n      case 136:\n        return this.parseBigIntLiteral(this.state.value);\n      case 134:\n        return this.parseStringLiteral(this.state.value);\n      case 84:\n        return this.parseNullLiteral();\n      case 85:\n        return this.parseBooleanLiteral(true);\n      case 86:\n        return this.parseBooleanLiteral(false);\n      case 10:\n        {\n          const canBeArrow = this.state.potentialArrowAt === this.state.start;\n          return this.parseParenAndDistinguishExpression(canBeArrow);\n        }\n      case 0:\n        {\n          return this.parseArrayLike(3, false, refExpressionErrors);\n        }\n      case 5:\n        {\n          return this.parseObjectLike(8, false, false, refExpressionErrors);\n        }\n      case 68:\n        return this.parseFunctionOrFunctionSent();\n      case 26:\n        decorators = this.parseDecorators();\n      case 80:\n        return this.parseClass(this.maybeTakeDecorators(decorators, this.startNode()), false);\n      case 77:\n        return this.parseNewOrNewTarget();\n      case 25:\n      case 24:\n        return this.parseTemplate(false);\n      case 15:\n        {\n          node = this.startNode();\n          this.next();\n          node.object = null;\n          const callee = node.callee = this.parseNoCallExpr();\n          if (callee.type === \"MemberExpression\") {\n            return this.finishNode(node, \"BindExpression\");\n          } else {\n            throw this.raise(Errors.UnsupportedBind, callee);\n          }\n        }\n      case 139:\n        {\n          this.raise(Errors.PrivateInExpectedIn, this.state.startLoc, {\n            identifierName: this.state.value\n          });\n          return this.parsePrivateName();\n        }\n      case 33:\n        {\n          return this.parseTopicReferenceThenEqualsSign(54, \"%\");\n        }\n      case 32:\n        {\n          return this.parseTopicReferenceThenEqualsSign(44, \"^\");\n        }\n      case 37:\n      case 38:\n        {\n          return this.parseTopicReference(\"hack\");\n        }\n      case 44:\n      case 54:\n      case 27:\n        {\n          const pipeProposal = this.getPluginOption(\"pipelineOperator\", \"proposal\");\n          if (pipeProposal) {\n            return this.parseTopicReference(pipeProposal);\n          }\n          throw this.unexpected();\n        }\n      case 47:\n        {\n          const lookaheadCh = this.input.codePointAt(this.nextTokenStart());\n          if (isIdentifierStart(lookaheadCh) || lookaheadCh === 62) {\n            throw this.expectOnePlugin([\"jsx\", \"flow\", \"typescript\"]);\n          }\n          throw this.unexpected();\n        }\n      default:\n        {\n          if (type === 137) {\n            return this.parseDecimalLiteral(this.state.value);\n          } else if (type === 2 || type === 1) {\n            return this.parseArrayLike(this.state.type === 2 ? 4 : 3, true);\n          } else if (type === 6 || type === 7) {\n            return this.parseObjectLike(this.state.type === 6 ? 9 : 8, false, true);\n          }\n        }\n        if (tokenIsIdentifier(type)) {\n          if (this.isContextual(127) && this.lookaheadInLineCharCode() === 123) {\n            return this.parseModuleExpression();\n          }\n          const canBeArrow = this.state.potentialArrowAt === this.state.start;\n          const containsEsc = this.state.containsEsc;\n          const id = this.parseIdentifier();\n          if (!containsEsc && id.name === \"async\" && !this.canInsertSemicolon()) {\n            const {\n              type\n            } = this.state;\n            if (type === 68) {\n              this.resetPreviousNodeTrailingComments(id);\n              this.next();\n              return this.parseAsyncFunctionExpression(this.startNodeAtNode(id));\n            } else if (tokenIsIdentifier(type)) {\n              if (this.lookaheadCharCode() === 61) {\n                return this.parseAsyncArrowUnaryFunction(this.startNodeAtNode(id));\n              } else {\n                return id;\n              }\n            } else if (type === 90) {\n              this.resetPreviousNodeTrailingComments(id);\n              return this.parseDo(this.startNodeAtNode(id), true);\n            }\n          }\n          if (canBeArrow && this.match(19) && !this.canInsertSemicolon()) {\n            this.next();\n            return this.parseArrowExpression(this.startNodeAtNode(id), [id], false);\n          }\n          return id;\n        } else {\n          throw this.unexpected();\n        }\n    }\n  }\n  parseTopicReferenceThenEqualsSign(topicTokenType, topicTokenValue) {\n    const pipeProposal = this.getPluginOption(\"pipelineOperator\", \"proposal\");\n    if (pipeProposal) {\n      this.state.type = topicTokenType;\n      this.state.value = topicTokenValue;\n      this.state.pos--;\n      this.state.end--;\n      this.state.endLoc = createPositionWithColumnOffset(this.state.endLoc, -1);\n      return this.parseTopicReference(pipeProposal);\n    }\n    throw this.unexpected();\n  }\n  parseTopicReference(pipeProposal) {\n    const node = this.startNode();\n    const startLoc = this.state.startLoc;\n    const tokenType = this.state.type;\n    this.next();\n    return this.finishTopicReference(node, startLoc, pipeProposal, tokenType);\n  }\n  finishTopicReference(node, startLoc, pipeProposal, tokenType) {\n    if (this.testTopicReferenceConfiguration(pipeProposal, startLoc, tokenType)) {\n      if (pipeProposal === \"hack\") {\n        if (!this.topicReferenceIsAllowedInCurrentContext()) {\n          this.raise(Errors.PipeTopicUnbound, startLoc);\n        }\n        this.registerTopicReference();\n        return this.finishNode(node, \"TopicReference\");\n      } else {\n        if (!this.topicReferenceIsAllowedInCurrentContext()) {\n          this.raise(Errors.PrimaryTopicNotAllowed, startLoc);\n        }\n        this.registerTopicReference();\n        return this.finishNode(node, \"PipelinePrimaryTopicReference\");\n      }\n    } else {\n      throw this.raise(Errors.PipeTopicUnconfiguredToken, startLoc, {\n        token: tokenLabelName(tokenType)\n      });\n    }\n  }\n  testTopicReferenceConfiguration(pipeProposal, startLoc, tokenType) {\n    switch (pipeProposal) {\n      case \"hack\":\n        {\n          return this.hasPlugin([\"pipelineOperator\", {\n            topicToken: tokenLabelName(tokenType)\n          }]);\n        }\n      case \"smart\":\n        return tokenType === 27;\n      default:\n        throw this.raise(Errors.PipeTopicRequiresHackPipes, startLoc);\n    }\n  }\n  parseAsyncArrowUnaryFunction(node) {\n    this.prodParam.enter(functionFlags(true, this.prodParam.hasYield));\n    const params = [this.parseIdentifier()];\n    this.prodParam.exit();\n    if (this.hasPrecedingLineBreak()) {\n      this.raise(Errors.LineTerminatorBeforeArrow, this.state.curPosition());\n    }\n    this.expect(19);\n    return this.parseArrowExpression(node, params, true);\n  }\n  parseDo(node, isAsync) {\n    this.expectPlugin(\"doExpressions\");\n    if (isAsync) {\n      this.expectPlugin(\"asyncDoExpressions\");\n    }\n    node.async = isAsync;\n    this.next();\n    const oldLabels = this.state.labels;\n    this.state.labels = [];\n    if (isAsync) {\n      this.prodParam.enter(2);\n      node.body = this.parseBlock();\n      this.prodParam.exit();\n    } else {\n      node.body = this.parseBlock();\n    }\n    this.state.labels = oldLabels;\n    return this.finishNode(node, \"DoExpression\");\n  }\n  parseSuper() {\n    const node = this.startNode();\n    this.next();\n    if (this.match(10) && !this.scope.allowDirectSuper) {\n      {\n        if (!(this.optionFlags & 16)) {\n          this.raise(Errors.SuperNotAllowed, node);\n        }\n      }\n    } else if (!this.scope.allowSuper) {\n      {\n        if (!(this.optionFlags & 16)) {\n          this.raise(Errors.UnexpectedSuper, node);\n        }\n      }\n    }\n    if (!this.match(10) && !this.match(0) && !this.match(16)) {\n      this.raise(Errors.UnsupportedSuper, node);\n    }\n    return this.finishNode(node, \"Super\");\n  }\n  parsePrivateName() {\n    const node = this.startNode();\n    const id = this.startNodeAt(createPositionWithColumnOffset(this.state.startLoc, 1));\n    const name = this.state.value;\n    this.next();\n    node.id = this.createIdentifier(id, name);\n    return this.finishNode(node, \"PrivateName\");\n  }\n  parseFunctionOrFunctionSent() {\n    const node = this.startNode();\n    this.next();\n    if (this.prodParam.hasYield && this.match(16)) {\n      const meta = this.createIdentifier(this.startNodeAtNode(node), \"function\");\n      this.next();\n      if (this.match(103)) {\n        this.expectPlugin(\"functionSent\");\n      } else if (!this.hasPlugin(\"functionSent\")) {\n        this.unexpected();\n      }\n      return this.parseMetaProperty(node, meta, \"sent\");\n    }\n    return this.parseFunction(node);\n  }\n  parseMetaProperty(node, meta, propertyName) {\n    node.meta = meta;\n    const containsEsc = this.state.containsEsc;\n    node.property = this.parseIdentifier(true);\n    if (node.property.name !== propertyName || containsEsc) {\n      this.raise(Errors.UnsupportedMetaProperty, node.property, {\n        target: meta.name,\n        onlyValidPropertyName: propertyName\n      });\n    }\n    return this.finishNode(node, \"MetaProperty\");\n  }\n  parseImportMetaPropertyOrPhaseCall(node) {\n    this.next();\n    if (this.isContextual(105) || this.isContextual(97)) {\n      const isSource = this.isContextual(105);\n      this.expectPlugin(isSource ? \"sourcePhaseImports\" : \"deferredImportEvaluation\");\n      this.next();\n      node.phase = isSource ? \"source\" : \"defer\";\n      return this.parseImportCall(node);\n    } else {\n      const id = this.createIdentifierAt(this.startNodeAtNode(node), \"import\", this.state.lastTokStartLoc);\n      if (this.isContextual(101)) {\n        if (!this.inModule) {\n          this.raise(Errors.ImportMetaOutsideModule, id);\n        }\n        this.sawUnambiguousESM = true;\n      }\n      return this.parseMetaProperty(node, id, \"meta\");\n    }\n  }\n  parseLiteralAtNode(value, type, node) {\n    this.addExtra(node, \"rawValue\", value);\n    this.addExtra(node, \"raw\", this.input.slice(this.offsetToSourcePos(node.start), this.state.end));\n    node.value = value;\n    this.next();\n    return this.finishNode(node, type);\n  }\n  parseLiteral(value, type) {\n    const node = this.startNode();\n    return this.parseLiteralAtNode(value, type, node);\n  }\n  parseStringLiteral(value) {\n    return this.parseLiteral(value, \"StringLiteral\");\n  }\n  parseNumericLiteral(value) {\n    return this.parseLiteral(value, \"NumericLiteral\");\n  }\n  parseBigIntLiteral(value) {\n    {\n      return this.parseLiteral(value, \"BigIntLiteral\");\n    }\n  }\n  parseDecimalLiteral(value) {\n    return this.parseLiteral(value, \"DecimalLiteral\");\n  }\n  parseRegExpLiteral(value) {\n    const node = this.startNode();\n    this.addExtra(node, \"raw\", this.input.slice(this.offsetToSourcePos(node.start), this.state.end));\n    node.pattern = value.pattern;\n    node.flags = value.flags;\n    this.next();\n    return this.finishNode(node, \"RegExpLiteral\");\n  }\n  parseBooleanLiteral(value) {\n    const node = this.startNode();\n    node.value = value;\n    this.next();\n    return this.finishNode(node, \"BooleanLiteral\");\n  }\n  parseNullLiteral() {\n    const node = this.startNode();\n    this.next();\n    return this.finishNode(node, \"NullLiteral\");\n  }\n  parseParenAndDistinguishExpression(canBeArrow) {\n    const startLoc = this.state.startLoc;\n    let val;\n    this.next();\n    this.expressionScope.enter(newArrowHeadScope());\n    const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;\n    const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;\n    this.state.maybeInArrowParameters = true;\n    this.state.inFSharpPipelineDirectBody = false;\n    const innerStartLoc = this.state.startLoc;\n    const exprList = [];\n    const refExpressionErrors = new ExpressionErrors();\n    let first = true;\n    let spreadStartLoc;\n    let optionalCommaStartLoc;\n    while (!this.match(11)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12, refExpressionErrors.optionalParametersLoc === null ? null : refExpressionErrors.optionalParametersLoc);\n        if (this.match(11)) {\n          optionalCommaStartLoc = this.state.startLoc;\n          break;\n        }\n      }\n      if (this.match(21)) {\n        const spreadNodeStartLoc = this.state.startLoc;\n        spreadStartLoc = this.state.startLoc;\n        exprList.push(this.parseParenItem(this.parseRestBinding(), spreadNodeStartLoc));\n        if (!this.checkCommaAfterRest(41)) {\n          break;\n        }\n      } else {\n        exprList.push(this.parseMaybeAssignAllowInOrVoidPattern(11, refExpressionErrors, this.parseParenItem));\n      }\n    }\n    const innerEndLoc = this.state.lastTokEndLoc;\n    this.expect(11);\n    this.state.maybeInArrowParameters = oldMaybeInArrowParameters;\n    this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody;\n    let arrowNode = this.startNodeAt(startLoc);\n    if (canBeArrow && this.shouldParseArrow(exprList) && (arrowNode = this.parseArrow(arrowNode))) {\n      this.checkDestructuringPrivate(refExpressionErrors);\n      this.expressionScope.validateAsPattern();\n      this.expressionScope.exit();\n      this.parseArrowExpression(arrowNode, exprList, false);\n      return arrowNode;\n    }\n    this.expressionScope.exit();\n    if (!exprList.length) {\n      this.unexpected(this.state.lastTokStartLoc);\n    }\n    if (optionalCommaStartLoc) this.unexpected(optionalCommaStartLoc);\n    if (spreadStartLoc) this.unexpected(spreadStartLoc);\n    this.checkExpressionErrors(refExpressionErrors, true);\n    this.toReferencedListDeep(exprList, true);\n    if (exprList.length > 1) {\n      val = this.startNodeAt(innerStartLoc);\n      val.expressions = exprList;\n      this.finishNode(val, \"SequenceExpression\");\n      this.resetEndLocation(val, innerEndLoc);\n    } else {\n      val = exprList[0];\n    }\n    return this.wrapParenthesis(startLoc, val);\n  }\n  wrapParenthesis(startLoc, expression) {\n    if (!(this.optionFlags & 1024)) {\n      this.addExtra(expression, \"parenthesized\", true);\n      this.addExtra(expression, \"parenStart\", startLoc.index);\n      this.takeSurroundingComments(expression, startLoc.index, this.state.lastTokEndLoc.index);\n      return expression;\n    }\n    const parenExpression = this.startNodeAt(startLoc);\n    parenExpression.expression = expression;\n    return this.finishNode(parenExpression, \"ParenthesizedExpression\");\n  }\n  shouldParseArrow(params) {\n    return !this.canInsertSemicolon();\n  }\n  parseArrow(node) {\n    if (this.eat(19)) {\n      return node;\n    }\n  }\n  parseParenItem(node, startLoc) {\n    return node;\n  }\n  parseNewOrNewTarget() {\n    const node = this.startNode();\n    this.next();\n    if (this.match(16)) {\n      const meta = this.createIdentifier(this.startNodeAtNode(node), \"new\");\n      this.next();\n      const metaProp = this.parseMetaProperty(node, meta, \"target\");\n      if (!this.scope.allowNewTarget) {\n        this.raise(Errors.UnexpectedNewTarget, metaProp);\n      }\n      return metaProp;\n    }\n    return this.parseNew(node);\n  }\n  parseNew(node) {\n    this.parseNewCallee(node);\n    if (this.eat(10)) {\n      const args = this.parseExprList(11);\n      this.toReferencedList(args);\n      node.arguments = args;\n    } else {\n      node.arguments = [];\n    }\n    return this.finishNode(node, \"NewExpression\");\n  }\n  parseNewCallee(node) {\n    const isImport = this.match(83);\n    const callee = this.parseNoCallExpr();\n    node.callee = callee;\n    if (isImport && (callee.type === \"Import\" || callee.type === \"ImportExpression\")) {\n      this.raise(Errors.ImportCallNotNewExpression, callee);\n    }\n  }\n  parseTemplateElement(isTagged) {\n    const {\n      start,\n      startLoc,\n      end,\n      value\n    } = this.state;\n    const elemStart = start + 1;\n    const elem = this.startNodeAt(createPositionWithColumnOffset(startLoc, 1));\n    if (value === null) {\n      if (!isTagged) {\n        this.raise(Errors.InvalidEscapeSequenceTemplate, createPositionWithColumnOffset(this.state.firstInvalidTemplateEscapePos, 1));\n      }\n    }\n    const isTail = this.match(24);\n    const endOffset = isTail ? -1 : -2;\n    const elemEnd = end + endOffset;\n    elem.value = {\n      raw: this.input.slice(elemStart, elemEnd).replace(/\\r\\n?/g, \"\\n\"),\n      cooked: value === null ? null : value.slice(1, endOffset)\n    };\n    elem.tail = isTail;\n    this.next();\n    const finishedNode = this.finishNode(elem, \"TemplateElement\");\n    this.resetEndLocation(finishedNode, createPositionWithColumnOffset(this.state.lastTokEndLoc, endOffset));\n    return finishedNode;\n  }\n  parseTemplate(isTagged) {\n    const node = this.startNode();\n    let curElt = this.parseTemplateElement(isTagged);\n    const quasis = [curElt];\n    const substitutions = [];\n    while (!curElt.tail) {\n      substitutions.push(this.parseTemplateSubstitution());\n      this.readTemplateContinuation();\n      quasis.push(curElt = this.parseTemplateElement(isTagged));\n    }\n    node.expressions = substitutions;\n    node.quasis = quasis;\n    return this.finishNode(node, \"TemplateLiteral\");\n  }\n  parseTemplateSubstitution() {\n    return this.parseExpression();\n  }\n  parseObjectLike(close, isPattern, isRecord, refExpressionErrors) {\n    if (isRecord) {\n      this.expectPlugin(\"recordAndTuple\");\n    }\n    const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;\n    this.state.inFSharpPipelineDirectBody = false;\n    let sawProto = false;\n    let first = true;\n    const node = this.startNode();\n    node.properties = [];\n    this.next();\n    while (!this.match(close)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12);\n        if (this.match(close)) {\n          this.addTrailingCommaExtraToNode(node);\n          break;\n        }\n      }\n      let prop;\n      if (isPattern) {\n        prop = this.parseBindingProperty();\n      } else {\n        prop = this.parsePropertyDefinition(refExpressionErrors);\n        sawProto = this.checkProto(prop, isRecord, sawProto, refExpressionErrors);\n      }\n      if (isRecord && !this.isObjectProperty(prop) && prop.type !== \"SpreadElement\") {\n        this.raise(Errors.InvalidRecordProperty, prop);\n      }\n      {\n        if (prop.shorthand) {\n          this.addExtra(prop, \"shorthand\", true);\n        }\n      }\n      node.properties.push(prop);\n    }\n    this.next();\n    this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody;\n    let type = \"ObjectExpression\";\n    if (isPattern) {\n      type = \"ObjectPattern\";\n    } else if (isRecord) {\n      type = \"RecordExpression\";\n    }\n    return this.finishNode(node, type);\n  }\n  addTrailingCommaExtraToNode(node) {\n    this.addExtra(node, \"trailingComma\", this.state.lastTokStartLoc.index);\n    this.addExtra(node, \"trailingCommaLoc\", this.state.lastTokStartLoc, false);\n  }\n  maybeAsyncOrAccessorProp(prop) {\n    return !prop.computed && prop.key.type === \"Identifier\" && (this.isLiteralPropertyName() || this.match(0) || this.match(55));\n  }\n  parsePropertyDefinition(refExpressionErrors) {\n    let decorators = [];\n    if (this.match(26)) {\n      if (this.hasPlugin(\"decorators\")) {\n        this.raise(Errors.UnsupportedPropertyDecorator, this.state.startLoc);\n      }\n      while (this.match(26)) {\n        decorators.push(this.parseDecorator());\n      }\n    }\n    const prop = this.startNode();\n    let isAsync = false;\n    let isAccessor = false;\n    let startLoc;\n    if (this.match(21)) {\n      if (decorators.length) this.unexpected();\n      return this.parseSpread();\n    }\n    if (decorators.length) {\n      prop.decorators = decorators;\n      decorators = [];\n    }\n    prop.method = false;\n    if (refExpressionErrors) {\n      startLoc = this.state.startLoc;\n    }\n    let isGenerator = this.eat(55);\n    this.parsePropertyNamePrefixOperator(prop);\n    const containsEsc = this.state.containsEsc;\n    this.parsePropertyName(prop, refExpressionErrors);\n    if (!isGenerator && !containsEsc && this.maybeAsyncOrAccessorProp(prop)) {\n      const {\n        key\n      } = prop;\n      const keyName = key.name;\n      if (keyName === \"async\" && !this.hasPrecedingLineBreak()) {\n        isAsync = true;\n        this.resetPreviousNodeTrailingComments(key);\n        isGenerator = this.eat(55);\n        this.parsePropertyName(prop);\n      }\n      if (keyName === \"get\" || keyName === \"set\") {\n        isAccessor = true;\n        this.resetPreviousNodeTrailingComments(key);\n        prop.kind = keyName;\n        if (this.match(55)) {\n          isGenerator = true;\n          this.raise(Errors.AccessorIsGenerator, this.state.curPosition(), {\n            kind: keyName\n          });\n          this.next();\n        }\n        this.parsePropertyName(prop);\n      }\n    }\n    return this.parseObjPropValue(prop, startLoc, isGenerator, isAsync, false, isAccessor, refExpressionErrors);\n  }\n  getGetterSetterExpectedParamCount(method) {\n    return method.kind === \"get\" ? 0 : 1;\n  }\n  getObjectOrClassMethodParams(method) {\n    return method.params;\n  }\n  checkGetterSetterParams(method) {\n    var _params;\n    const paramCount = this.getGetterSetterExpectedParamCount(method);\n    const params = this.getObjectOrClassMethodParams(method);\n    if (params.length !== paramCount) {\n      this.raise(method.kind === \"get\" ? Errors.BadGetterArity : Errors.BadSetterArity, method);\n    }\n    if (method.kind === \"set\" && ((_params = params[params.length - 1]) == null ? void 0 : _params.type) === \"RestElement\") {\n      this.raise(Errors.BadSetterRestParameter, method);\n    }\n  }\n  parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor) {\n    if (isAccessor) {\n      const finishedProp = this.parseMethod(prop, isGenerator, false, false, false, \"ObjectMethod\");\n      this.checkGetterSetterParams(finishedProp);\n      return finishedProp;\n    }\n    if (isAsync || isGenerator || this.match(10)) {\n      if (isPattern) this.unexpected();\n      prop.kind = \"method\";\n      prop.method = true;\n      return this.parseMethod(prop, isGenerator, isAsync, false, false, \"ObjectMethod\");\n    }\n  }\n  parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors) {\n    prop.shorthand = false;\n    if (this.eat(14)) {\n      prop.value = isPattern ? this.parseMaybeDefault(this.state.startLoc) : this.parseMaybeAssignAllowInOrVoidPattern(8, refExpressionErrors);\n      return this.finishObjectProperty(prop);\n    }\n    if (!prop.computed && prop.key.type === \"Identifier\") {\n      this.checkReservedWord(prop.key.name, prop.key.loc.start, true, false);\n      if (isPattern) {\n        prop.value = this.parseMaybeDefault(startLoc, this.cloneIdentifier(prop.key));\n      } else if (this.match(29)) {\n        const shorthandAssignLoc = this.state.startLoc;\n        if (refExpressionErrors != null) {\n          if (refExpressionErrors.shorthandAssignLoc === null) {\n            refExpressionErrors.shorthandAssignLoc = shorthandAssignLoc;\n          }\n        } else {\n          this.raise(Errors.InvalidCoverInitializedName, shorthandAssignLoc);\n        }\n        prop.value = this.parseMaybeDefault(startLoc, this.cloneIdentifier(prop.key));\n      } else {\n        prop.value = this.cloneIdentifier(prop.key);\n      }\n      prop.shorthand = true;\n      return this.finishObjectProperty(prop);\n    }\n  }\n  finishObjectProperty(node) {\n    return this.finishNode(node, \"ObjectProperty\");\n  }\n  parseObjPropValue(prop, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors) {\n    const node = this.parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor) || this.parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors);\n    if (!node) this.unexpected();\n    return node;\n  }\n  parsePropertyName(prop, refExpressionErrors) {\n    if (this.eat(0)) {\n      prop.computed = true;\n      prop.key = this.parseMaybeAssignAllowIn();\n      this.expect(3);\n    } else {\n      const {\n        type,\n        value\n      } = this.state;\n      let key;\n      if (tokenIsKeywordOrIdentifier(type)) {\n        key = this.parseIdentifier(true);\n      } else {\n        switch (type) {\n          case 135:\n            key = this.parseNumericLiteral(value);\n            break;\n          case 134:\n            key = this.parseStringLiteral(value);\n            break;\n          case 136:\n            key = this.parseBigIntLiteral(value);\n            break;\n          case 139:\n            {\n              const privateKeyLoc = this.state.startLoc;\n              if (refExpressionErrors != null) {\n                if (refExpressionErrors.privateKeyLoc === null) {\n                  refExpressionErrors.privateKeyLoc = privateKeyLoc;\n                }\n              } else {\n                this.raise(Errors.UnexpectedPrivateField, privateKeyLoc);\n              }\n              key = this.parsePrivateName();\n              break;\n            }\n          default:\n            if (type === 137) {\n              key = this.parseDecimalLiteral(value);\n              break;\n            }\n            this.unexpected();\n        }\n      }\n      prop.key = key;\n      if (type !== 139) {\n        prop.computed = false;\n      }\n    }\n  }\n  initFunction(node, isAsync) {\n    node.id = null;\n    node.generator = false;\n    node.async = isAsync;\n  }\n  parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope = false) {\n    this.initFunction(node, isAsync);\n    node.generator = isGenerator;\n    this.scope.enter(514 | 16 | (inClassScope ? 576 : 0) | (allowDirectSuper ? 32 : 0));\n    this.prodParam.enter(functionFlags(isAsync, node.generator));\n    this.parseFunctionParams(node, isConstructor);\n    const finishedNode = this.parseFunctionBodyAndFinish(node, type, true);\n    this.prodParam.exit();\n    this.scope.exit();\n    return finishedNode;\n  }\n  parseArrayLike(close, isTuple, refExpressionErrors) {\n    if (isTuple) {\n      this.expectPlugin(\"recordAndTuple\");\n    }\n    const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;\n    this.state.inFSharpPipelineDirectBody = false;\n    const node = this.startNode();\n    this.next();\n    node.elements = this.parseExprList(close, !isTuple, refExpressionErrors, node);\n    this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody;\n    return this.finishNode(node, isTuple ? \"TupleExpression\" : \"ArrayExpression\");\n  }\n  parseArrowExpression(node, params, isAsync, trailingCommaLoc) {\n    this.scope.enter(514 | 4);\n    let flags = functionFlags(isAsync, false);\n    if (!this.match(5) && this.prodParam.hasIn) {\n      flags |= 8;\n    }\n    this.prodParam.enter(flags);\n    this.initFunction(node, isAsync);\n    const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;\n    if (params) {\n      this.state.maybeInArrowParameters = true;\n      this.setArrowFunctionParameters(node, params, trailingCommaLoc);\n    }\n    this.state.maybeInArrowParameters = false;\n    this.parseFunctionBody(node, true);\n    this.prodParam.exit();\n    this.scope.exit();\n    this.state.maybeInArrowParameters = oldMaybeInArrowParameters;\n    return this.finishNode(node, \"ArrowFunctionExpression\");\n  }\n  setArrowFunctionParameters(node, params, trailingCommaLoc) {\n    this.toAssignableList(params, trailingCommaLoc, false);\n    node.params = params;\n  }\n  parseFunctionBodyAndFinish(node, type, isMethod = false) {\n    this.parseFunctionBody(node, false, isMethod);\n    return this.finishNode(node, type);\n  }\n  parseFunctionBody(node, allowExpression, isMethod = false) {\n    const isExpression = allowExpression && !this.match(5);\n    this.expressionScope.enter(newExpressionScope());\n    if (isExpression) {\n      node.body = this.parseMaybeAssign();\n      this.checkParams(node, false, allowExpression, false);\n    } else {\n      const oldStrict = this.state.strict;\n      const oldLabels = this.state.labels;\n      this.state.labels = [];\n      this.prodParam.enter(this.prodParam.currentFlags() | 4);\n      node.body = this.parseBlock(true, false, hasStrictModeDirective => {\n        const nonSimple = !this.isSimpleParamList(node.params);\n        if (hasStrictModeDirective && nonSimple) {\n          this.raise(Errors.IllegalLanguageModeDirective, (node.kind === \"method\" || node.kind === \"constructor\") && !!node.key ? node.key.loc.end : node);\n        }\n        const strictModeChanged = !oldStrict && this.state.strict;\n        this.checkParams(node, !this.state.strict && !allowExpression && !isMethod && !nonSimple, allowExpression, strictModeChanged);\n        if (this.state.strict && node.id) {\n          this.checkIdentifier(node.id, 65, strictModeChanged);\n        }\n      });\n      this.prodParam.exit();\n      this.state.labels = oldLabels;\n    }\n    this.expressionScope.exit();\n  }\n  isSimpleParameter(node) {\n    return node.type === \"Identifier\";\n  }\n  isSimpleParamList(params) {\n    for (let i = 0, len = params.length; i < len; i++) {\n      if (!this.isSimpleParameter(params[i])) return false;\n    }\n    return true;\n  }\n  checkParams(node, allowDuplicates, isArrowFunction, strictModeChanged = true) {\n    const checkClashes = !allowDuplicates && new Set();\n    const formalParameters = {\n      type: \"FormalParameters\"\n    };\n    for (const param of node.params) {\n      this.checkLVal(param, formalParameters, 5, checkClashes, strictModeChanged);\n    }\n  }\n  parseExprList(close, allowEmpty, refExpressionErrors, nodeForExtra) {\n    const elts = [];\n    let first = true;\n    while (!this.eat(close)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12);\n        if (this.match(close)) {\n          if (nodeForExtra) {\n            this.addTrailingCommaExtraToNode(nodeForExtra);\n          }\n          this.next();\n          break;\n        }\n      }\n      elts.push(this.parseExprListItem(close, allowEmpty, refExpressionErrors));\n    }\n    return elts;\n  }\n  parseExprListItem(close, allowEmpty, refExpressionErrors, allowPlaceholder) {\n    let elt;\n    if (this.match(12)) {\n      if (!allowEmpty) {\n        this.raise(Errors.UnexpectedToken, this.state.curPosition(), {\n          unexpected: \",\"\n        });\n      }\n      elt = null;\n    } else if (this.match(21)) {\n      const spreadNodeStartLoc = this.state.startLoc;\n      elt = this.parseParenItem(this.parseSpread(refExpressionErrors), spreadNodeStartLoc);\n    } else if (this.match(17)) {\n      this.expectPlugin(\"partialApplication\");\n      if (!allowPlaceholder) {\n        this.raise(Errors.UnexpectedArgumentPlaceholder, this.state.startLoc);\n      }\n      const node = this.startNode();\n      this.next();\n      elt = this.finishNode(node, \"ArgumentPlaceholder\");\n    } else {\n      elt = this.parseMaybeAssignAllowInOrVoidPattern(close, refExpressionErrors, this.parseParenItem);\n    }\n    return elt;\n  }\n  parseIdentifier(liberal) {\n    const node = this.startNode();\n    const name = this.parseIdentifierName(liberal);\n    return this.createIdentifier(node, name);\n  }\n  createIdentifier(node, name) {\n    node.name = name;\n    node.loc.identifierName = name;\n    return this.finishNode(node, \"Identifier\");\n  }\n  createIdentifierAt(node, name, endLoc) {\n    node.name = name;\n    node.loc.identifierName = name;\n    return this.finishNodeAt(node, \"Identifier\", endLoc);\n  }\n  parseIdentifierName(liberal) {\n    let name;\n    const {\n      startLoc,\n      type\n    } = this.state;\n    if (tokenIsKeywordOrIdentifier(type)) {\n      name = this.state.value;\n    } else {\n      this.unexpected();\n    }\n    const tokenIsKeyword = tokenKeywordOrIdentifierIsKeyword(type);\n    if (liberal) {\n      if (tokenIsKeyword) {\n        this.replaceToken(132);\n      }\n    } else {\n      this.checkReservedWord(name, startLoc, tokenIsKeyword, false);\n    }\n    this.next();\n    return name;\n  }\n  checkReservedWord(word, startLoc, checkKeywords, isBinding) {\n    if (word.length > 10) {\n      return;\n    }\n    if (!canBeReservedWord(word)) {\n      return;\n    }\n    if (checkKeywords && isKeyword(word)) {\n      this.raise(Errors.UnexpectedKeyword, startLoc, {\n        keyword: word\n      });\n      return;\n    }\n    const reservedTest = !this.state.strict ? isReservedWord : isBinding ? isStrictBindReservedWord : isStrictReservedWord;\n    if (reservedTest(word, this.inModule)) {\n      this.raise(Errors.UnexpectedReservedWord, startLoc, {\n        reservedWord: word\n      });\n      return;\n    } else if (word === \"yield\") {\n      if (this.prodParam.hasYield) {\n        this.raise(Errors.YieldBindingIdentifier, startLoc);\n        return;\n      }\n    } else if (word === \"await\") {\n      if (this.prodParam.hasAwait) {\n        this.raise(Errors.AwaitBindingIdentifier, startLoc);\n        return;\n      }\n      if (this.scope.inStaticBlock) {\n        this.raise(Errors.AwaitBindingIdentifierInStaticBlock, startLoc);\n        return;\n      }\n      this.expressionScope.recordAsyncArrowParametersError(startLoc);\n    } else if (word === \"arguments\") {\n      if (this.scope.inClassAndNotInNonArrowFunction) {\n        this.raise(Errors.ArgumentsInClass, startLoc);\n        return;\n      }\n    }\n  }\n  recordAwaitIfAllowed() {\n    const isAwaitAllowed = this.prodParam.hasAwait;\n    if (isAwaitAllowed && !this.scope.inFunction) {\n      this.state.hasTopLevelAwait = true;\n    }\n    return isAwaitAllowed;\n  }\n  parseAwait(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    this.expressionScope.recordParameterInitializerError(Errors.AwaitExpressionFormalParameter, node);\n    if (this.eat(55)) {\n      this.raise(Errors.ObsoleteAwaitStar, node);\n    }\n    if (!this.scope.inFunction && !(this.optionFlags & 1)) {\n      if (this.isAmbiguousPrefixOrIdentifier()) {\n        this.ambiguousScriptDifferentAst = true;\n      } else {\n        this.sawUnambiguousESM = true;\n      }\n    }\n    if (!this.state.soloAwait) {\n      node.argument = this.parseMaybeUnary(null, true);\n    }\n    return this.finishNode(node, \"AwaitExpression\");\n  }\n  isAmbiguousPrefixOrIdentifier() {\n    if (this.hasPrecedingLineBreak()) return true;\n    const {\n      type\n    } = this.state;\n    return type === 53 || type === 10 || type === 0 || tokenIsTemplate(type) || type === 102 && !this.state.containsEsc || type === 138 || type === 56 || this.hasPlugin(\"v8intrinsic\") && type === 54;\n  }\n  parseYield(startLoc) {\n    const node = this.startNodeAt(startLoc);\n    this.expressionScope.recordParameterInitializerError(Errors.YieldInParameter, node);\n    let delegating = false;\n    let argument = null;\n    if (!this.hasPrecedingLineBreak()) {\n      delegating = this.eat(55);\n      switch (this.state.type) {\n        case 13:\n        case 140:\n        case 8:\n        case 11:\n        case 3:\n        case 9:\n        case 14:\n        case 12:\n          if (!delegating) break;\n        default:\n          argument = this.parseMaybeAssign();\n      }\n    }\n    node.delegate = delegating;\n    node.argument = argument;\n    return this.finishNode(node, \"YieldExpression\");\n  }\n  parseImportCall(node) {\n    this.next();\n    node.source = this.parseMaybeAssignAllowIn();\n    node.options = null;\n    if (this.eat(12)) {\n      if (!this.match(11)) {\n        node.options = this.parseMaybeAssignAllowIn();\n        if (this.eat(12)) {\n          this.addTrailingCommaExtraToNode(node.options);\n          if (!this.match(11)) {\n            do {\n              this.parseMaybeAssignAllowIn();\n            } while (this.eat(12) && !this.match(11));\n            this.raise(Errors.ImportCallArity, node);\n          }\n        }\n      } else {\n        this.addTrailingCommaExtraToNode(node.source);\n      }\n    }\n    this.expect(11);\n    return this.finishNode(node, \"ImportExpression\");\n  }\n  checkPipelineAtInfixOperator(left, leftStartLoc) {\n    if (this.hasPlugin([\"pipelineOperator\", {\n      proposal: \"smart\"\n    }])) {\n      if (left.type === \"SequenceExpression\") {\n        this.raise(Errors.PipelineHeadSequenceExpression, leftStartLoc);\n      }\n    }\n  }\n  parseSmartPipelineBodyInStyle(childExpr, startLoc) {\n    if (this.isSimpleReference(childExpr)) {\n      const bodyNode = this.startNodeAt(startLoc);\n      bodyNode.callee = childExpr;\n      return this.finishNode(bodyNode, \"PipelineBareFunction\");\n    } else {\n      const bodyNode = this.startNodeAt(startLoc);\n      this.checkSmartPipeTopicBodyEarlyErrors(startLoc);\n      bodyNode.expression = childExpr;\n      return this.finishNode(bodyNode, \"PipelineTopicExpression\");\n    }\n  }\n  isSimpleReference(expression) {\n    switch (expression.type) {\n      case \"MemberExpression\":\n        return !expression.computed && this.isSimpleReference(expression.object);\n      case \"Identifier\":\n        return true;\n      default:\n        return false;\n    }\n  }\n  checkSmartPipeTopicBodyEarlyErrors(startLoc) {\n    if (this.match(19)) {\n      throw this.raise(Errors.PipelineBodyNoArrow, this.state.startLoc);\n    }\n    if (!this.topicReferenceWasUsedInCurrentContext()) {\n      this.raise(Errors.PipelineTopicUnused, startLoc);\n    }\n  }\n  withTopicBindingContext(callback) {\n    const outerContextTopicState = this.state.topicContext;\n    this.state.topicContext = {\n      maxNumOfResolvableTopics: 1,\n      maxTopicIndex: null\n    };\n    try {\n      return callback();\n    } finally {\n      this.state.topicContext = outerContextTopicState;\n    }\n  }\n  withSmartMixTopicForbiddingContext(callback) {\n    if (this.hasPlugin([\"pipelineOperator\", {\n      proposal: \"smart\"\n    }])) {\n      const outerContextTopicState = this.state.topicContext;\n      this.state.topicContext = {\n        maxNumOfResolvableTopics: 0,\n        maxTopicIndex: null\n      };\n      try {\n        return callback();\n      } finally {\n        this.state.topicContext = outerContextTopicState;\n      }\n    } else {\n      return callback();\n    }\n  }\n  withSoloAwaitPermittingContext(callback) {\n    const outerContextSoloAwaitState = this.state.soloAwait;\n    this.state.soloAwait = true;\n    try {\n      return callback();\n    } finally {\n      this.state.soloAwait = outerContextSoloAwaitState;\n    }\n  }\n  allowInAnd(callback) {\n    const flags = this.prodParam.currentFlags();\n    const prodParamToSet = 8 & ~flags;\n    if (prodParamToSet) {\n      this.prodParam.enter(flags | 8);\n      try {\n        return callback();\n      } finally {\n        this.prodParam.exit();\n      }\n    }\n    return callback();\n  }\n  disallowInAnd(callback) {\n    const flags = this.prodParam.currentFlags();\n    const prodParamToClear = 8 & flags;\n    if (prodParamToClear) {\n      this.prodParam.enter(flags & ~8);\n      try {\n        return callback();\n      } finally {\n        this.prodParam.exit();\n      }\n    }\n    return callback();\n  }\n  registerTopicReference() {\n    this.state.topicContext.maxTopicIndex = 0;\n  }\n  topicReferenceIsAllowedInCurrentContext() {\n    return this.state.topicContext.maxNumOfResolvableTopics >= 1;\n  }\n  topicReferenceWasUsedInCurrentContext() {\n    return this.state.topicContext.maxTopicIndex != null && this.state.topicContext.maxTopicIndex >= 0;\n  }\n  parseFSharpPipelineBody(prec) {\n    const startLoc = this.state.startLoc;\n    this.state.potentialArrowAt = this.state.start;\n    const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;\n    this.state.inFSharpPipelineDirectBody = true;\n    const ret = this.parseExprOp(this.parseMaybeUnaryOrPrivate(), startLoc, prec);\n    this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody;\n    return ret;\n  }\n  parseModuleExpression() {\n    this.expectPlugin(\"moduleBlocks\");\n    const node = this.startNode();\n    this.next();\n    if (!this.match(5)) {\n      this.unexpected(null, 5);\n    }\n    const program = this.startNodeAt(this.state.endLoc);\n    this.next();\n    const revertScopes = this.initializeScopes(true);\n    this.enterInitialScopes();\n    try {\n      node.body = this.parseProgram(program, 8, \"module\");\n    } finally {\n      revertScopes();\n    }\n    return this.finishNode(node, \"ModuleExpression\");\n  }\n  parseVoidPattern(refExpressionErrors) {\n    this.expectPlugin(\"discardBinding\");\n    const node = this.startNode();\n    if (refExpressionErrors != null) {\n      refExpressionErrors.voidPatternLoc = this.state.startLoc;\n    }\n    this.next();\n    return this.finishNode(node, \"VoidPattern\");\n  }\n  parseMaybeAssignAllowInOrVoidPattern(close, refExpressionErrors, afterLeftParse) {\n    if (refExpressionErrors != null && this.match(88)) {\n      const nextCode = this.lookaheadCharCode();\n      if (nextCode === 44 || nextCode === (close === 3 ? 93 : close === 8 ? 125 : 41) || nextCode === 61) {\n        return this.parseMaybeDefault(this.state.startLoc, this.parseVoidPattern(refExpressionErrors));\n      }\n    }\n    return this.parseMaybeAssignAllowIn(refExpressionErrors, afterLeftParse);\n  }\n  parsePropertyNamePrefixOperator(prop) {}\n}\nconst loopLabel = {\n    kind: 1\n  },\n  switchLabel = {\n    kind: 2\n  };\nconst loneSurrogate = /[\\uD800-\\uDFFF]/u;\nconst keywordRelationalOperator = /in(?:stanceof)?/y;\nfunction babel7CompatTokens(tokens, input, startIndex) {\n  for (let i = 0; i < tokens.length; i++) {\n    const token = tokens[i];\n    const {\n      type\n    } = token;\n    if (typeof type === \"number\") {\n      {\n        if (type === 139) {\n          const {\n            loc,\n            start,\n            value,\n            end\n          } = token;\n          const hashEndPos = start + 1;\n          const hashEndLoc = createPositionWithColumnOffset(loc.start, 1);\n          tokens.splice(i, 1, new Token({\n            type: getExportedToken(27),\n            value: \"#\",\n            start: start,\n            end: hashEndPos,\n            startLoc: loc.start,\n            endLoc: hashEndLoc\n          }), new Token({\n            type: getExportedToken(132),\n            value: value,\n            start: hashEndPos,\n            end: end,\n            startLoc: hashEndLoc,\n            endLoc: loc.end\n          }));\n          i++;\n          continue;\n        }\n        if (tokenIsTemplate(type)) {\n          const {\n            loc,\n            start,\n            value,\n            end\n          } = token;\n          const backquoteEnd = start + 1;\n          const backquoteEndLoc = createPositionWithColumnOffset(loc.start, 1);\n          let startToken;\n          if (input.charCodeAt(start - startIndex) === 96) {\n            startToken = new Token({\n              type: getExportedToken(22),\n              value: \"`\",\n              start: start,\n              end: backquoteEnd,\n              startLoc: loc.start,\n              endLoc: backquoteEndLoc\n            });\n          } else {\n            startToken = new Token({\n              type: getExportedToken(8),\n              value: \"}\",\n              start: start,\n              end: backquoteEnd,\n              startLoc: loc.start,\n              endLoc: backquoteEndLoc\n            });\n          }\n          let templateValue, templateElementEnd, templateElementEndLoc, endToken;\n          if (type === 24) {\n            templateElementEnd = end - 1;\n            templateElementEndLoc = createPositionWithColumnOffset(loc.end, -1);\n            templateValue = value === null ? null : value.slice(1, -1);\n            endToken = new Token({\n              type: getExportedToken(22),\n              value: \"`\",\n              start: templateElementEnd,\n              end: end,\n              startLoc: templateElementEndLoc,\n              endLoc: loc.end\n            });\n          } else {\n            templateElementEnd = end - 2;\n            templateElementEndLoc = createPositionWithColumnOffset(loc.end, -2);\n            templateValue = value === null ? null : value.slice(1, -2);\n            endToken = new Token({\n              type: getExportedToken(23),\n              value: \"${\",\n              start: templateElementEnd,\n              end: end,\n              startLoc: templateElementEndLoc,\n              endLoc: loc.end\n            });\n          }\n          tokens.splice(i, 1, startToken, new Token({\n            type: getExportedToken(20),\n            value: templateValue,\n            start: backquoteEnd,\n            end: templateElementEnd,\n            startLoc: backquoteEndLoc,\n            endLoc: templateElementEndLoc\n          }), endToken);\n          i += 2;\n          continue;\n        }\n      }\n      token.type = getExportedToken(type);\n    }\n  }\n  return tokens;\n}\nclass StatementParser extends ExpressionParser {\n  parseTopLevel(file, program) {\n    file.program = this.parseProgram(program, 140, this.options.sourceType === \"module\" ? \"module\" : \"script\");\n    file.comments = this.comments;\n    if (this.optionFlags & 256) {\n      file.tokens = babel7CompatTokens(this.tokens, this.input, this.startIndex);\n    }\n    return this.finishNode(file, \"File\");\n  }\n  parseProgram(program, end, sourceType) {\n    program.sourceType = sourceType;\n    program.interpreter = this.parseInterpreterDirective();\n    this.parseBlockBody(program, true, true, end);\n    if (this.inModule) {\n      if (!(this.optionFlags & 64) && this.scope.undefinedExports.size > 0) {\n        for (const [localName, at] of Array.from(this.scope.undefinedExports)) {\n          this.raise(Errors.ModuleExportUndefined, at, {\n            localName\n          });\n        }\n      }\n      this.addExtra(program, \"topLevelAwait\", this.state.hasTopLevelAwait);\n    }\n    let finishedProgram;\n    if (end === 140) {\n      finishedProgram = this.finishNode(program, \"Program\");\n    } else {\n      finishedProgram = this.finishNodeAt(program, \"Program\", createPositionWithColumnOffset(this.state.startLoc, -1));\n    }\n    return finishedProgram;\n  }\n  stmtToDirective(stmt) {\n    const directive = this.castNodeTo(stmt, \"Directive\");\n    const directiveLiteral = this.castNodeTo(stmt.expression, \"DirectiveLiteral\");\n    const expressionValue = directiveLiteral.value;\n    const raw = this.input.slice(this.offsetToSourcePos(directiveLiteral.start), this.offsetToSourcePos(directiveLiteral.end));\n    const val = directiveLiteral.value = raw.slice(1, -1);\n    this.addExtra(directiveLiteral, \"raw\", raw);\n    this.addExtra(directiveLiteral, \"rawValue\", val);\n    this.addExtra(directiveLiteral, \"expressionValue\", expressionValue);\n    directive.value = directiveLiteral;\n    delete stmt.expression;\n    return directive;\n  }\n  parseInterpreterDirective() {\n    if (!this.match(28)) {\n      return null;\n    }\n    const node = this.startNode();\n    node.value = this.state.value;\n    this.next();\n    return this.finishNode(node, \"InterpreterDirective\");\n  }\n  isLet() {\n    if (!this.isContextual(100)) {\n      return false;\n    }\n    return this.hasFollowingBindingAtom();\n  }\n  isUsing() {\n    if (!this.isContextual(107)) {\n      return false;\n    }\n    return this.nextTokenIsIdentifierOnSameLine();\n  }\n  isForUsing() {\n    if (!this.isContextual(107)) {\n      return false;\n    }\n    const next = this.nextTokenInLineStart();\n    const nextCh = this.codePointAtPos(next);\n    if (this.isUnparsedContextual(next, \"of\")) {\n      const nextCharAfterOf = this.lookaheadCharCodeSince(next + 2);\n      if (nextCharAfterOf !== 61 && nextCharAfterOf !== 58 && nextCharAfterOf !== 59) {\n        return false;\n      }\n    }\n    if (this.chStartsBindingIdentifier(nextCh, next) || this.isUnparsedContextual(next, \"void\")) {\n      return true;\n    }\n    return false;\n  }\n  nextTokenIsIdentifierOnSameLine() {\n    const next = this.nextTokenInLineStart();\n    const nextCh = this.codePointAtPos(next);\n    return this.chStartsBindingIdentifier(nextCh, next);\n  }\n  isAwaitUsing() {\n    if (!this.isContextual(96)) {\n      return false;\n    }\n    let next = this.nextTokenInLineStart();\n    if (this.isUnparsedContextual(next, \"using\")) {\n      next = this.nextTokenInLineStartSince(next + 5);\n      const nextCh = this.codePointAtPos(next);\n      if (this.chStartsBindingIdentifier(nextCh, next)) {\n        return true;\n      }\n    }\n    return false;\n  }\n  chStartsBindingIdentifier(ch, pos) {\n    if (isIdentifierStart(ch)) {\n      keywordRelationalOperator.lastIndex = pos;\n      if (keywordRelationalOperator.test(this.input)) {\n        const endCh = this.codePointAtPos(keywordRelationalOperator.lastIndex);\n        if (!isIdentifierChar(endCh) && endCh !== 92) {\n          return false;\n        }\n      }\n      return true;\n    } else if (ch === 92) {\n      return true;\n    } else {\n      return false;\n    }\n  }\n  chStartsBindingPattern(ch) {\n    return ch === 91 || ch === 123;\n  }\n  hasFollowingBindingAtom() {\n    const next = this.nextTokenStart();\n    const nextCh = this.codePointAtPos(next);\n    return this.chStartsBindingPattern(nextCh) || this.chStartsBindingIdentifier(nextCh, next);\n  }\n  hasInLineFollowingBindingIdentifierOrBrace() {\n    const next = this.nextTokenInLineStart();\n    const nextCh = this.codePointAtPos(next);\n    return nextCh === 123 || this.chStartsBindingIdentifier(nextCh, next);\n  }\n  allowsUsing() {\n    return (this.scope.inModule || !this.scope.inTopLevel) && !this.scope.inBareCaseStatement;\n  }\n  parseModuleItem() {\n    return this.parseStatementLike(1 | 2 | 4 | 8);\n  }\n  parseStatementListItem() {\n    return this.parseStatementLike(2 | 4 | (!this.options.annexB || this.state.strict ? 0 : 8));\n  }\n  parseStatementOrSloppyAnnexBFunctionDeclaration(allowLabeledFunction = false) {\n    let flags = 0;\n    if (this.options.annexB && !this.state.strict) {\n      flags |= 4;\n      if (allowLabeledFunction) {\n        flags |= 8;\n      }\n    }\n    return this.parseStatementLike(flags);\n  }\n  parseStatement() {\n    return this.parseStatementLike(0);\n  }\n  parseStatementLike(flags) {\n    let decorators = null;\n    if (this.match(26)) {\n      decorators = this.parseDecorators(true);\n    }\n    return this.parseStatementContent(flags, decorators);\n  }\n  parseStatementContent(flags, decorators) {\n    const startType = this.state.type;\n    const node = this.startNode();\n    const allowDeclaration = !!(flags & 2);\n    const allowFunctionDeclaration = !!(flags & 4);\n    const topLevel = flags & 1;\n    switch (startType) {\n      case 60:\n        return this.parseBreakContinueStatement(node, true);\n      case 63:\n        return this.parseBreakContinueStatement(node, false);\n      case 64:\n        return this.parseDebuggerStatement(node);\n      case 90:\n        return this.parseDoWhileStatement(node);\n      case 91:\n        return this.parseForStatement(node);\n      case 68:\n        if (this.lookaheadCharCode() === 46) break;\n        if (!allowFunctionDeclaration) {\n          this.raise(this.state.strict ? Errors.StrictFunction : this.options.annexB ? Errors.SloppyFunctionAnnexB : Errors.SloppyFunction, this.state.startLoc);\n        }\n        return this.parseFunctionStatement(node, false, !allowDeclaration && allowFunctionDeclaration);\n      case 80:\n        if (!allowDeclaration) this.unexpected();\n        return this.parseClass(this.maybeTakeDecorators(decorators, node), true);\n      case 69:\n        return this.parseIfStatement(node);\n      case 70:\n        return this.parseReturnStatement(node);\n      case 71:\n        return this.parseSwitchStatement(node);\n      case 72:\n        return this.parseThrowStatement(node);\n      case 73:\n        return this.parseTryStatement(node);\n      case 96:\n        if (this.isAwaitUsing()) {\n          if (!this.allowsUsing()) {\n            this.raise(Errors.UnexpectedUsingDeclaration, node);\n          } else if (!allowDeclaration) {\n            this.raise(Errors.UnexpectedLexicalDeclaration, node);\n          } else if (!this.recordAwaitIfAllowed()) {\n            this.raise(Errors.AwaitUsingNotInAsyncContext, node);\n          }\n          this.next();\n          return this.parseVarStatement(node, \"await using\");\n        }\n        break;\n      case 107:\n        if (this.state.containsEsc || !this.hasInLineFollowingBindingIdentifierOrBrace()) {\n          break;\n        }\n        if (!this.allowsUsing()) {\n          this.raise(Errors.UnexpectedUsingDeclaration, this.state.startLoc);\n        } else if (!allowDeclaration) {\n          this.raise(Errors.UnexpectedLexicalDeclaration, this.state.startLoc);\n        }\n        return this.parseVarStatement(node, \"using\");\n      case 100:\n        {\n          if (this.state.containsEsc) {\n            break;\n          }\n          const next = this.nextTokenStart();\n          const nextCh = this.codePointAtPos(next);\n          if (nextCh !== 91) {\n            if (!allowDeclaration && this.hasFollowingLineBreak()) break;\n            if (!this.chStartsBindingIdentifier(nextCh, next) && nextCh !== 123) {\n              break;\n            }\n          }\n        }\n      case 75:\n        {\n          if (!allowDeclaration) {\n            this.raise(Errors.UnexpectedLexicalDeclaration, this.state.startLoc);\n          }\n        }\n      case 74:\n        {\n          const kind = this.state.value;\n          return this.parseVarStatement(node, kind);\n        }\n      case 92:\n        return this.parseWhileStatement(node);\n      case 76:\n        return this.parseWithStatement(node);\n      case 5:\n        return this.parseBlock();\n      case 13:\n        return this.parseEmptyStatement(node);\n      case 83:\n        {\n          const nextTokenCharCode = this.lookaheadCharCode();\n          if (nextTokenCharCode === 40 || nextTokenCharCode === 46) {\n            break;\n          }\n        }\n      case 82:\n        {\n          if (!(this.optionFlags & 8) && !topLevel) {\n            this.raise(Errors.UnexpectedImportExport, this.state.startLoc);\n          }\n          this.next();\n          let result;\n          if (startType === 83) {\n            result = this.parseImport(node);\n          } else {\n            result = this.parseExport(node, decorators);\n          }\n          this.assertModuleNodeAllowed(result);\n          return result;\n        }\n      default:\n        {\n          if (this.isAsyncFunction()) {\n            if (!allowDeclaration) {\n              this.raise(Errors.AsyncFunctionInSingleStatementContext, this.state.startLoc);\n            }\n            this.next();\n            return this.parseFunctionStatement(node, true, !allowDeclaration && allowFunctionDeclaration);\n          }\n        }\n    }\n    const maybeName = this.state.value;\n    const expr = this.parseExpression();\n    if (tokenIsIdentifier(startType) && expr.type === \"Identifier\" && this.eat(14)) {\n      return this.parseLabeledStatement(node, maybeName, expr, flags);\n    } else {\n      return this.parseExpressionStatement(node, expr, decorators);\n    }\n  }\n  assertModuleNodeAllowed(node) {\n    if (!(this.optionFlags & 8) && !this.inModule) {\n      this.raise(Errors.ImportOutsideModule, node);\n    }\n  }\n  decoratorsEnabledBeforeExport() {\n    if (this.hasPlugin(\"decorators-legacy\")) return true;\n    return this.hasPlugin(\"decorators\") && this.getPluginOption(\"decorators\", \"decoratorsBeforeExport\") !== false;\n  }\n  maybeTakeDecorators(maybeDecorators, classNode, exportNode) {\n    if (maybeDecorators) {\n      var _classNode$decorators;\n      if ((_classNode$decorators = classNode.decorators) != null && _classNode$decorators.length) {\n        if (typeof this.getPluginOption(\"decorators\", \"decoratorsBeforeExport\") !== \"boolean\") {\n          this.raise(Errors.DecoratorsBeforeAfterExport, classNode.decorators[0]);\n        }\n        classNode.decorators.unshift(...maybeDecorators);\n      } else {\n        classNode.decorators = maybeDecorators;\n      }\n      this.resetStartLocationFromNode(classNode, maybeDecorators[0]);\n      if (exportNode) this.resetStartLocationFromNode(exportNode, classNode);\n    }\n    return classNode;\n  }\n  canHaveLeadingDecorator() {\n    return this.match(80);\n  }\n  parseDecorators(allowExport) {\n    const decorators = [];\n    do {\n      decorators.push(this.parseDecorator());\n    } while (this.match(26));\n    if (this.match(82)) {\n      if (!allowExport) {\n        this.unexpected();\n      }\n      if (!this.decoratorsEnabledBeforeExport()) {\n        this.raise(Errors.DecoratorExportClass, this.state.startLoc);\n      }\n    } else if (!this.canHaveLeadingDecorator()) {\n      throw this.raise(Errors.UnexpectedLeadingDecorator, this.state.startLoc);\n    }\n    return decorators;\n  }\n  parseDecorator() {\n    this.expectOnePlugin([\"decorators\", \"decorators-legacy\"]);\n    const node = this.startNode();\n    this.next();\n    if (this.hasPlugin(\"decorators\")) {\n      const startLoc = this.state.startLoc;\n      let expr;\n      if (this.match(10)) {\n        const startLoc = this.state.startLoc;\n        this.next();\n        expr = this.parseExpression();\n        this.expect(11);\n        expr = this.wrapParenthesis(startLoc, expr);\n        const paramsStartLoc = this.state.startLoc;\n        node.expression = this.parseMaybeDecoratorArguments(expr, startLoc);\n        if (this.getPluginOption(\"decorators\", \"allowCallParenthesized\") === false && node.expression !== expr) {\n          this.raise(Errors.DecoratorArgumentsOutsideParentheses, paramsStartLoc);\n        }\n      } else {\n        expr = this.parseIdentifier(false);\n        while (this.eat(16)) {\n          const node = this.startNodeAt(startLoc);\n          node.object = expr;\n          if (this.match(139)) {\n            this.classScope.usePrivateName(this.state.value, this.state.startLoc);\n            node.property = this.parsePrivateName();\n          } else {\n            node.property = this.parseIdentifier(true);\n          }\n          node.computed = false;\n          expr = this.finishNode(node, \"MemberExpression\");\n        }\n        node.expression = this.parseMaybeDecoratorArguments(expr, startLoc);\n      }\n    } else {\n      node.expression = this.parseExprSubscripts();\n    }\n    return this.finishNode(node, \"Decorator\");\n  }\n  parseMaybeDecoratorArguments(expr, startLoc) {\n    if (this.eat(10)) {\n      const node = this.startNodeAt(startLoc);\n      node.callee = expr;\n      node.arguments = this.parseCallExpressionArguments();\n      this.toReferencedList(node.arguments);\n      return this.finishNode(node, \"CallExpression\");\n    }\n    return expr;\n  }\n  parseBreakContinueStatement(node, isBreak) {\n    this.next();\n    if (this.isLineTerminator()) {\n      node.label = null;\n    } else {\n      node.label = this.parseIdentifier();\n      this.semicolon();\n    }\n    this.verifyBreakContinue(node, isBreak);\n    return this.finishNode(node, isBreak ? \"BreakStatement\" : \"ContinueStatement\");\n  }\n  verifyBreakContinue(node, isBreak) {\n    let i;\n    for (i = 0; i < this.state.labels.length; ++i) {\n      const lab = this.state.labels[i];\n      if (node.label == null || lab.name === node.label.name) {\n        if (lab.kind != null && (isBreak || lab.kind === 1)) {\n          break;\n        }\n        if (node.label && isBreak) break;\n      }\n    }\n    if (i === this.state.labels.length) {\n      const type = isBreak ? \"BreakStatement\" : \"ContinueStatement\";\n      this.raise(Errors.IllegalBreakContinue, node, {\n        type\n      });\n    }\n  }\n  parseDebuggerStatement(node) {\n    this.next();\n    this.semicolon();\n    return this.finishNode(node, \"DebuggerStatement\");\n  }\n  parseHeaderExpression() {\n    this.expect(10);\n    const val = this.parseExpression();\n    this.expect(11);\n    return val;\n  }\n  parseDoWhileStatement(node) {\n    this.next();\n    this.state.labels.push(loopLabel);\n    node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement());\n    this.state.labels.pop();\n    this.expect(92);\n    node.test = this.parseHeaderExpression();\n    this.eat(13);\n    return this.finishNode(node, \"DoWhileStatement\");\n  }\n  parseForStatement(node) {\n    this.next();\n    this.state.labels.push(loopLabel);\n    let awaitAt = null;\n    if (this.isContextual(96) && this.recordAwaitIfAllowed()) {\n      awaitAt = this.state.startLoc;\n      this.next();\n    }\n    this.scope.enter(0);\n    this.expect(10);\n    if (this.match(13)) {\n      if (awaitAt !== null) {\n        this.unexpected(awaitAt);\n      }\n      return this.parseFor(node, null);\n    }\n    const startsWithLet = this.isContextual(100);\n    {\n      const startsWithAwaitUsing = this.isAwaitUsing();\n      const starsWithUsingDeclaration = startsWithAwaitUsing || this.isForUsing();\n      const isLetOrUsing = startsWithLet && this.hasFollowingBindingAtom() || starsWithUsingDeclaration;\n      if (this.match(74) || this.match(75) || isLetOrUsing) {\n        const initNode = this.startNode();\n        let kind;\n        if (startsWithAwaitUsing) {\n          kind = \"await using\";\n          if (!this.recordAwaitIfAllowed()) {\n            this.raise(Errors.AwaitUsingNotInAsyncContext, this.state.startLoc);\n          }\n          this.next();\n        } else {\n          kind = this.state.value;\n        }\n        this.next();\n        this.parseVar(initNode, true, kind);\n        const init = this.finishNode(initNode, \"VariableDeclaration\");\n        const isForIn = this.match(58);\n        if (isForIn && starsWithUsingDeclaration) {\n          this.raise(Errors.ForInUsing, init);\n        }\n        if ((isForIn || this.isContextual(102)) && init.declarations.length === 1) {\n          return this.parseForIn(node, init, awaitAt);\n        }\n        if (awaitAt !== null) {\n          this.unexpected(awaitAt);\n        }\n        return this.parseFor(node, init);\n      }\n    }\n    const startsWithAsync = this.isContextual(95);\n    const refExpressionErrors = new ExpressionErrors();\n    const init = this.parseExpression(true, refExpressionErrors);\n    const isForOf = this.isContextual(102);\n    if (isForOf) {\n      if (startsWithLet) {\n        this.raise(Errors.ForOfLet, init);\n      }\n      if (awaitAt === null && startsWithAsync && init.type === \"Identifier\") {\n        this.raise(Errors.ForOfAsync, init);\n      }\n    }\n    if (isForOf || this.match(58)) {\n      this.checkDestructuringPrivate(refExpressionErrors);\n      this.toAssignable(init, true);\n      const type = isForOf ? \"ForOfStatement\" : \"ForInStatement\";\n      this.checkLVal(init, {\n        type\n      });\n      return this.parseForIn(node, init, awaitAt);\n    } else {\n      this.checkExpressionErrors(refExpressionErrors, true);\n    }\n    if (awaitAt !== null) {\n      this.unexpected(awaitAt);\n    }\n    return this.parseFor(node, init);\n  }\n  parseFunctionStatement(node, isAsync, isHangingDeclaration) {\n    this.next();\n    return this.parseFunction(node, 1 | (isHangingDeclaration ? 2 : 0) | (isAsync ? 8 : 0));\n  }\n  parseIfStatement(node) {\n    this.next();\n    node.test = this.parseHeaderExpression();\n    node.consequent = this.parseStatementOrSloppyAnnexBFunctionDeclaration();\n    node.alternate = this.eat(66) ? this.parseStatementOrSloppyAnnexBFunctionDeclaration() : null;\n    return this.finishNode(node, \"IfStatement\");\n  }\n  parseReturnStatement(node) {\n    if (!this.prodParam.hasReturn) {\n      this.raise(Errors.IllegalReturn, this.state.startLoc);\n    }\n    this.next();\n    if (this.isLineTerminator()) {\n      node.argument = null;\n    } else {\n      node.argument = this.parseExpression();\n      this.semicolon();\n    }\n    return this.finishNode(node, \"ReturnStatement\");\n  }\n  parseSwitchStatement(node) {\n    this.next();\n    node.discriminant = this.parseHeaderExpression();\n    const cases = node.cases = [];\n    this.expect(5);\n    this.state.labels.push(switchLabel);\n    this.scope.enter(256);\n    let cur;\n    for (let sawDefault; !this.match(8);) {\n      if (this.match(61) || this.match(65)) {\n        const isCase = this.match(61);\n        if (cur) this.finishNode(cur, \"SwitchCase\");\n        cases.push(cur = this.startNode());\n        cur.consequent = [];\n        this.next();\n        if (isCase) {\n          cur.test = this.parseExpression();\n        } else {\n          if (sawDefault) {\n            this.raise(Errors.MultipleDefaultsInSwitch, this.state.lastTokStartLoc);\n          }\n          sawDefault = true;\n          cur.test = null;\n        }\n        this.expect(14);\n      } else {\n        if (cur) {\n          cur.consequent.push(this.parseStatementListItem());\n        } else {\n          this.unexpected();\n        }\n      }\n    }\n    this.scope.exit();\n    if (cur) this.finishNode(cur, \"SwitchCase\");\n    this.next();\n    this.state.labels.pop();\n    return this.finishNode(node, \"SwitchStatement\");\n  }\n  parseThrowStatement(node) {\n    this.next();\n    if (this.hasPrecedingLineBreak()) {\n      this.raise(Errors.NewlineAfterThrow, this.state.lastTokEndLoc);\n    }\n    node.argument = this.parseExpression();\n    this.semicolon();\n    return this.finishNode(node, \"ThrowStatement\");\n  }\n  parseCatchClauseParam() {\n    const param = this.parseBindingAtom();\n    this.scope.enter(this.options.annexB && param.type === \"Identifier\" ? 8 : 0);\n    this.checkLVal(param, {\n      type: \"CatchClause\"\n    }, 9);\n    return param;\n  }\n  parseTryStatement(node) {\n    this.next();\n    node.block = this.parseBlock();\n    node.handler = null;\n    if (this.match(62)) {\n      const clause = this.startNode();\n      this.next();\n      if (this.match(10)) {\n        this.expect(10);\n        clause.param = this.parseCatchClauseParam();\n        this.expect(11);\n      } else {\n        clause.param = null;\n        this.scope.enter(0);\n      }\n      clause.body = this.withSmartMixTopicForbiddingContext(() => this.parseBlock(false, false));\n      this.scope.exit();\n      node.handler = this.finishNode(clause, \"CatchClause\");\n    }\n    node.finalizer = this.eat(67) ? this.parseBlock() : null;\n    if (!node.handler && !node.finalizer) {\n      this.raise(Errors.NoCatchOrFinally, node);\n    }\n    return this.finishNode(node, \"TryStatement\");\n  }\n  parseVarStatement(node, kind, allowMissingInitializer = false) {\n    this.next();\n    this.parseVar(node, false, kind, allowMissingInitializer);\n    this.semicolon();\n    return this.finishNode(node, \"VariableDeclaration\");\n  }\n  parseWhileStatement(node) {\n    this.next();\n    node.test = this.parseHeaderExpression();\n    this.state.labels.push(loopLabel);\n    node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement());\n    this.state.labels.pop();\n    return this.finishNode(node, \"WhileStatement\");\n  }\n  parseWithStatement(node) {\n    if (this.state.strict) {\n      this.raise(Errors.StrictWith, this.state.startLoc);\n    }\n    this.next();\n    node.object = this.parseHeaderExpression();\n    node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement());\n    return this.finishNode(node, \"WithStatement\");\n  }\n  parseEmptyStatement(node) {\n    this.next();\n    return this.finishNode(node, \"EmptyStatement\");\n  }\n  parseLabeledStatement(node, maybeName, expr, flags) {\n    for (const label of this.state.labels) {\n      if (label.name === maybeName) {\n        this.raise(Errors.LabelRedeclaration, expr, {\n          labelName: maybeName\n        });\n      }\n    }\n    const kind = tokenIsLoop(this.state.type) ? 1 : this.match(71) ? 2 : null;\n    for (let i = this.state.labels.length - 1; i >= 0; i--) {\n      const label = this.state.labels[i];\n      if (label.statementStart === node.start) {\n        label.statementStart = this.sourceToOffsetPos(this.state.start);\n        label.kind = kind;\n      } else {\n        break;\n      }\n    }\n    this.state.labels.push({\n      name: maybeName,\n      kind: kind,\n      statementStart: this.sourceToOffsetPos(this.state.start)\n    });\n    node.body = flags & 8 ? this.parseStatementOrSloppyAnnexBFunctionDeclaration(true) : this.parseStatement();\n    this.state.labels.pop();\n    node.label = expr;\n    return this.finishNode(node, \"LabeledStatement\");\n  }\n  parseExpressionStatement(node, expr, decorators) {\n    node.expression = expr;\n    this.semicolon();\n    return this.finishNode(node, \"ExpressionStatement\");\n  }\n  parseBlock(allowDirectives = false, createNewLexicalScope = true, afterBlockParse) {\n    const node = this.startNode();\n    if (allowDirectives) {\n      this.state.strictErrors.clear();\n    }\n    this.expect(5);\n    if (createNewLexicalScope) {\n      this.scope.enter(0);\n    }\n    this.parseBlockBody(node, allowDirectives, false, 8, afterBlockParse);\n    if (createNewLexicalScope) {\n      this.scope.exit();\n    }\n    return this.finishNode(node, \"BlockStatement\");\n  }\n  isValidDirective(stmt) {\n    return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"StringLiteral\" && !stmt.expression.extra.parenthesized;\n  }\n  parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse) {\n    const body = node.body = [];\n    const directives = node.directives = [];\n    this.parseBlockOrModuleBlockBody(body, allowDirectives ? directives : undefined, topLevel, end, afterBlockParse);\n  }\n  parseBlockOrModuleBlockBody(body, directives, topLevel, end, afterBlockParse) {\n    const oldStrict = this.state.strict;\n    let hasStrictModeDirective = false;\n    let parsedNonDirective = false;\n    while (!this.match(end)) {\n      const stmt = topLevel ? this.parseModuleItem() : this.parseStatementListItem();\n      if (directives && !parsedNonDirective) {\n        if (this.isValidDirective(stmt)) {\n          const directive = this.stmtToDirective(stmt);\n          directives.push(directive);\n          if (!hasStrictModeDirective && directive.value.value === \"use strict\") {\n            hasStrictModeDirective = true;\n            this.setStrict(true);\n          }\n          continue;\n        }\n        parsedNonDirective = true;\n        this.state.strictErrors.clear();\n      }\n      body.push(stmt);\n    }\n    afterBlockParse == null || afterBlockParse.call(this, hasStrictModeDirective);\n    if (!oldStrict) {\n      this.setStrict(false);\n    }\n    this.next();\n  }\n  parseFor(node, init) {\n    node.init = init;\n    this.semicolon(false);\n    node.test = this.match(13) ? null : this.parseExpression();\n    this.semicolon(false);\n    node.update = this.match(11) ? null : this.parseExpression();\n    this.expect(11);\n    node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement());\n    this.scope.exit();\n    this.state.labels.pop();\n    return this.finishNode(node, \"ForStatement\");\n  }\n  parseForIn(node, init, awaitAt) {\n    const isForIn = this.match(58);\n    this.next();\n    if (isForIn) {\n      if (awaitAt !== null) this.unexpected(awaitAt);\n    } else {\n      node.await = awaitAt !== null;\n    }\n    if (init.type === \"VariableDeclaration\" && init.declarations[0].init != null && (!isForIn || !this.options.annexB || this.state.strict || init.kind !== \"var\" || init.declarations[0].id.type !== \"Identifier\")) {\n      this.raise(Errors.ForInOfLoopInitializer, init, {\n        type: isForIn ? \"ForInStatement\" : \"ForOfStatement\"\n      });\n    }\n    if (init.type === \"AssignmentPattern\") {\n      this.raise(Errors.InvalidLhs, init, {\n        ancestor: {\n          type: \"ForStatement\"\n        }\n      });\n    }\n    node.left = init;\n    node.right = isForIn ? this.parseExpression() : this.parseMaybeAssignAllowIn();\n    this.expect(11);\n    node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement());\n    this.scope.exit();\n    this.state.labels.pop();\n    return this.finishNode(node, isForIn ? \"ForInStatement\" : \"ForOfStatement\");\n  }\n  parseVar(node, isFor, kind, allowMissingInitializer = false) {\n    const declarations = node.declarations = [];\n    node.kind = kind;\n    for (;;) {\n      const decl = this.startNode();\n      this.parseVarId(decl, kind);\n      decl.init = !this.eat(29) ? null : isFor ? this.parseMaybeAssignDisallowIn() : this.parseMaybeAssignAllowIn();\n      if (decl.init === null && !allowMissingInitializer) {\n        if (decl.id.type !== \"Identifier\" && !(isFor && (this.match(58) || this.isContextual(102)))) {\n          this.raise(Errors.DeclarationMissingInitializer, this.state.lastTokEndLoc, {\n            kind: \"destructuring\"\n          });\n        } else if ((kind === \"const\" || kind === \"using\" || kind === \"await using\") && !(this.match(58) || this.isContextual(102))) {\n          this.raise(Errors.DeclarationMissingInitializer, this.state.lastTokEndLoc, {\n            kind\n          });\n        }\n      }\n      declarations.push(this.finishNode(decl, \"VariableDeclarator\"));\n      if (!this.eat(12)) break;\n    }\n    return node;\n  }\n  parseVarId(decl, kind) {\n    const id = this.parseBindingAtom();\n    if (kind === \"using\" || kind === \"await using\") {\n      if (id.type === \"ArrayPattern\" || id.type === \"ObjectPattern\") {\n        this.raise(Errors.UsingDeclarationHasBindingPattern, id.loc.start);\n      }\n    } else {\n      if (id.type === \"VoidPattern\") {\n        this.raise(Errors.UnexpectedVoidPattern, id.loc.start);\n      }\n    }\n    this.checkLVal(id, {\n      type: \"VariableDeclarator\"\n    }, kind === \"var\" ? 5 : 8201);\n    decl.id = id;\n  }\n  parseAsyncFunctionExpression(node) {\n    return this.parseFunction(node, 8);\n  }\n  parseFunction(node, flags = 0) {\n    const hangingDeclaration = flags & 2;\n    const isDeclaration = !!(flags & 1);\n    const requireId = isDeclaration && !(flags & 4);\n    const isAsync = !!(flags & 8);\n    this.initFunction(node, isAsync);\n    if (this.match(55)) {\n      if (hangingDeclaration) {\n        this.raise(Errors.GeneratorInSingleStatementContext, this.state.startLoc);\n      }\n      this.next();\n      node.generator = true;\n    }\n    if (isDeclaration) {\n      node.id = this.parseFunctionId(requireId);\n    }\n    const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;\n    this.state.maybeInArrowParameters = false;\n    this.scope.enter(514);\n    this.prodParam.enter(functionFlags(isAsync, node.generator));\n    if (!isDeclaration) {\n      node.id = this.parseFunctionId();\n    }\n    this.parseFunctionParams(node, false);\n    this.withSmartMixTopicForbiddingContext(() => {\n      this.parseFunctionBodyAndFinish(node, isDeclaration ? \"FunctionDeclaration\" : \"FunctionExpression\");\n    });\n    this.prodParam.exit();\n    this.scope.exit();\n    if (isDeclaration && !hangingDeclaration) {\n      this.registerFunctionStatementId(node);\n    }\n    this.state.maybeInArrowParameters = oldMaybeInArrowParameters;\n    return node;\n  }\n  parseFunctionId(requireId) {\n    return requireId || tokenIsIdentifier(this.state.type) ? this.parseIdentifier() : null;\n  }\n  parseFunctionParams(node, isConstructor) {\n    this.expect(10);\n    this.expressionScope.enter(newParameterDeclarationScope());\n    node.params = this.parseBindingList(11, 41, 2 | (isConstructor ? 4 : 0));\n    this.expressionScope.exit();\n  }\n  registerFunctionStatementId(node) {\n    if (!node.id) return;\n    this.scope.declareName(node.id.name, !this.options.annexB || this.state.strict || node.generator || node.async ? this.scope.treatFunctionsAsVar ? 5 : 8201 : 17, node.id.loc.start);\n  }\n  parseClass(node, isStatement, optionalId) {\n    this.next();\n    const oldStrict = this.state.strict;\n    this.state.strict = true;\n    this.parseClassId(node, isStatement, optionalId);\n    this.parseClassSuper(node);\n    node.body = this.parseClassBody(!!node.superClass, oldStrict);\n    return this.finishNode(node, isStatement ? \"ClassDeclaration\" : \"ClassExpression\");\n  }\n  isClassProperty() {\n    return this.match(29) || this.match(13) || this.match(8);\n  }\n  isClassMethod() {\n    return this.match(10);\n  }\n  nameIsConstructor(key) {\n    return key.type === \"Identifier\" && key.name === \"constructor\" || key.type === \"StringLiteral\" && key.value === \"constructor\";\n  }\n  isNonstaticConstructor(method) {\n    return !method.computed && !method.static && this.nameIsConstructor(method.key);\n  }\n  parseClassBody(hadSuperClass, oldStrict) {\n    this.classScope.enter();\n    const state = {\n      hadConstructor: false,\n      hadSuperClass\n    };\n    let decorators = [];\n    const classBody = this.startNode();\n    classBody.body = [];\n    this.expect(5);\n    this.withSmartMixTopicForbiddingContext(() => {\n      while (!this.match(8)) {\n        if (this.eat(13)) {\n          if (decorators.length > 0) {\n            throw this.raise(Errors.DecoratorSemicolon, this.state.lastTokEndLoc);\n          }\n          continue;\n        }\n        if (this.match(26)) {\n          decorators.push(this.parseDecorator());\n          continue;\n        }\n        const member = this.startNode();\n        if (decorators.length) {\n          member.decorators = decorators;\n          this.resetStartLocationFromNode(member, decorators[0]);\n          decorators = [];\n        }\n        this.parseClassMember(classBody, member, state);\n        if (member.kind === \"constructor\" && member.decorators && member.decorators.length > 0) {\n          this.raise(Errors.DecoratorConstructor, member);\n        }\n      }\n    });\n    this.state.strict = oldStrict;\n    this.next();\n    if (decorators.length) {\n      throw this.raise(Errors.TrailingDecorator, this.state.startLoc);\n    }\n    this.classScope.exit();\n    return this.finishNode(classBody, \"ClassBody\");\n  }\n  parseClassMemberFromModifier(classBody, member) {\n    const key = this.parseIdentifier(true);\n    if (this.isClassMethod()) {\n      const method = member;\n      method.kind = \"method\";\n      method.computed = false;\n      method.key = key;\n      method.static = false;\n      this.pushClassMethod(classBody, method, false, false, false, false);\n      return true;\n    } else if (this.isClassProperty()) {\n      const prop = member;\n      prop.computed = false;\n      prop.key = key;\n      prop.static = false;\n      classBody.body.push(this.parseClassProperty(prop));\n      return true;\n    }\n    this.resetPreviousNodeTrailingComments(key);\n    return false;\n  }\n  parseClassMember(classBody, member, state) {\n    const isStatic = this.isContextual(106);\n    if (isStatic) {\n      if (this.parseClassMemberFromModifier(classBody, member)) {\n        return;\n      }\n      if (this.eat(5)) {\n        this.parseClassStaticBlock(classBody, member);\n        return;\n      }\n    }\n    this.parseClassMemberWithIsStatic(classBody, member, state, isStatic);\n  }\n  parseClassMemberWithIsStatic(classBody, member, state, isStatic) {\n    const publicMethod = member;\n    const privateMethod = member;\n    const publicProp = member;\n    const privateProp = member;\n    const accessorProp = member;\n    const method = publicMethod;\n    const publicMember = publicMethod;\n    member.static = isStatic;\n    this.parsePropertyNamePrefixOperator(member);\n    if (this.eat(55)) {\n      method.kind = \"method\";\n      const isPrivateName = this.match(139);\n      this.parseClassElementName(method);\n      this.parsePostMemberNameModifiers(method);\n      if (isPrivateName) {\n        this.pushClassPrivateMethod(classBody, privateMethod, true, false);\n        return;\n      }\n      if (this.isNonstaticConstructor(publicMethod)) {\n        this.raise(Errors.ConstructorIsGenerator, publicMethod.key);\n      }\n      this.pushClassMethod(classBody, publicMethod, true, false, false, false);\n      return;\n    }\n    const isContextual = !this.state.containsEsc && tokenIsIdentifier(this.state.type);\n    const key = this.parseClassElementName(member);\n    const maybeContextualKw = isContextual ? key.name : null;\n    const isPrivate = this.isPrivateName(key);\n    const maybeQuestionTokenStartLoc = this.state.startLoc;\n    this.parsePostMemberNameModifiers(publicMember);\n    if (this.isClassMethod()) {\n      method.kind = \"method\";\n      if (isPrivate) {\n        this.pushClassPrivateMethod(classBody, privateMethod, false, false);\n        return;\n      }\n      const isConstructor = this.isNonstaticConstructor(publicMethod);\n      let allowsDirectSuper = false;\n      if (isConstructor) {\n        publicMethod.kind = \"constructor\";\n        if (state.hadConstructor && !this.hasPlugin(\"typescript\")) {\n          this.raise(Errors.DuplicateConstructor, key);\n        }\n        if (isConstructor && this.hasPlugin(\"typescript\") && member.override) {\n          this.raise(Errors.OverrideOnConstructor, key);\n        }\n        state.hadConstructor = true;\n        allowsDirectSuper = state.hadSuperClass;\n      }\n      this.pushClassMethod(classBody, publicMethod, false, false, isConstructor, allowsDirectSuper);\n    } else if (this.isClassProperty()) {\n      if (isPrivate) {\n        this.pushClassPrivateProperty(classBody, privateProp);\n      } else {\n        this.pushClassProperty(classBody, publicProp);\n      }\n    } else if (maybeContextualKw === \"async\" && !this.isLineTerminator()) {\n      this.resetPreviousNodeTrailingComments(key);\n      const isGenerator = this.eat(55);\n      if (publicMember.optional) {\n        this.unexpected(maybeQuestionTokenStartLoc);\n      }\n      method.kind = \"method\";\n      const isPrivate = this.match(139);\n      this.parseClassElementName(method);\n      this.parsePostMemberNameModifiers(publicMember);\n      if (isPrivate) {\n        this.pushClassPrivateMethod(classBody, privateMethod, isGenerator, true);\n      } else {\n        if (this.isNonstaticConstructor(publicMethod)) {\n          this.raise(Errors.ConstructorIsAsync, publicMethod.key);\n        }\n        this.pushClassMethod(classBody, publicMethod, isGenerator, true, false, false);\n      }\n    } else if ((maybeContextualKw === \"get\" || maybeContextualKw === \"set\") && !(this.match(55) && this.isLineTerminator())) {\n      this.resetPreviousNodeTrailingComments(key);\n      method.kind = maybeContextualKw;\n      const isPrivate = this.match(139);\n      this.parseClassElementName(publicMethod);\n      if (isPrivate) {\n        this.pushClassPrivateMethod(classBody, privateMethod, false, false);\n      } else {\n        if (this.isNonstaticConstructor(publicMethod)) {\n          this.raise(Errors.ConstructorIsAccessor, publicMethod.key);\n        }\n        this.pushClassMethod(classBody, publicMethod, false, false, false, false);\n      }\n      this.checkGetterSetterParams(publicMethod);\n    } else if (maybeContextualKw === \"accessor\" && !this.isLineTerminator()) {\n      this.expectPlugin(\"decoratorAutoAccessors\");\n      this.resetPreviousNodeTrailingComments(key);\n      const isPrivate = this.match(139);\n      this.parseClassElementName(publicProp);\n      this.pushClassAccessorProperty(classBody, accessorProp, isPrivate);\n    } else if (this.isLineTerminator()) {\n      if (isPrivate) {\n        this.pushClassPrivateProperty(classBody, privateProp);\n      } else {\n        this.pushClassProperty(classBody, publicProp);\n      }\n    } else {\n      this.unexpected();\n    }\n  }\n  parseClassElementName(member) {\n    const {\n      type,\n      value\n    } = this.state;\n    if ((type === 132 || type === 134) && member.static && value === \"prototype\") {\n      this.raise(Errors.StaticPrototype, this.state.startLoc);\n    }\n    if (type === 139) {\n      if (value === \"constructor\") {\n        this.raise(Errors.ConstructorClassPrivateField, this.state.startLoc);\n      }\n      const key = this.parsePrivateName();\n      member.key = key;\n      return key;\n    }\n    this.parsePropertyName(member);\n    return member.key;\n  }\n  parseClassStaticBlock(classBody, member) {\n    var _member$decorators;\n    this.scope.enter(576 | 128 | 16);\n    const oldLabels = this.state.labels;\n    this.state.labels = [];\n    this.prodParam.enter(0);\n    const body = member.body = [];\n    this.parseBlockOrModuleBlockBody(body, undefined, false, 8);\n    this.prodParam.exit();\n    this.scope.exit();\n    this.state.labels = oldLabels;\n    classBody.body.push(this.finishNode(member, \"StaticBlock\"));\n    if ((_member$decorators = member.decorators) != null && _member$decorators.length) {\n      this.raise(Errors.DecoratorStaticBlock, member);\n    }\n  }\n  pushClassProperty(classBody, prop) {\n    if (!prop.computed && this.nameIsConstructor(prop.key)) {\n      this.raise(Errors.ConstructorClassField, prop.key);\n    }\n    classBody.body.push(this.parseClassProperty(prop));\n  }\n  pushClassPrivateProperty(classBody, prop) {\n    const node = this.parseClassPrivateProperty(prop);\n    classBody.body.push(node);\n    this.classScope.declarePrivateName(this.getPrivateNameSV(node.key), 0, node.key.loc.start);\n  }\n  pushClassAccessorProperty(classBody, prop, isPrivate) {\n    if (!isPrivate && !prop.computed && this.nameIsConstructor(prop.key)) {\n      this.raise(Errors.ConstructorClassField, prop.key);\n    }\n    const node = this.parseClassAccessorProperty(prop);\n    classBody.body.push(node);\n    if (isPrivate) {\n      this.classScope.declarePrivateName(this.getPrivateNameSV(node.key), 0, node.key.loc.start);\n    }\n  }\n  pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) {\n    classBody.body.push(this.parseMethod(method, isGenerator, isAsync, isConstructor, allowsDirectSuper, \"ClassMethod\", true));\n  }\n  pushClassPrivateMethod(classBody, method, isGenerator, isAsync) {\n    const node = this.parseMethod(method, isGenerator, isAsync, false, false, \"ClassPrivateMethod\", true);\n    classBody.body.push(node);\n    const kind = node.kind === \"get\" ? node.static ? 6 : 2 : node.kind === \"set\" ? node.static ? 5 : 1 : 0;\n    this.declareClassPrivateMethodInScope(node, kind);\n  }\n  declareClassPrivateMethodInScope(node, kind) {\n    this.classScope.declarePrivateName(this.getPrivateNameSV(node.key), kind, node.key.loc.start);\n  }\n  parsePostMemberNameModifiers(methodOrProp) {}\n  parseClassPrivateProperty(node) {\n    this.parseInitializer(node);\n    this.semicolon();\n    return this.finishNode(node, \"ClassPrivateProperty\");\n  }\n  parseClassProperty(node) {\n    this.parseInitializer(node);\n    this.semicolon();\n    return this.finishNode(node, \"ClassProperty\");\n  }\n  parseClassAccessorProperty(node) {\n    this.parseInitializer(node);\n    this.semicolon();\n    return this.finishNode(node, \"ClassAccessorProperty\");\n  }\n  parseInitializer(node) {\n    this.scope.enter(576 | 16);\n    this.expressionScope.enter(newExpressionScope());\n    this.prodParam.enter(0);\n    node.value = this.eat(29) ? this.parseMaybeAssignAllowIn() : null;\n    this.expressionScope.exit();\n    this.prodParam.exit();\n    this.scope.exit();\n  }\n  parseClassId(node, isStatement, optionalId, bindingType = 8331) {\n    if (tokenIsIdentifier(this.state.type)) {\n      node.id = this.parseIdentifier();\n      if (isStatement) {\n        this.declareNameFromIdentifier(node.id, bindingType);\n      }\n    } else {\n      if (optionalId || !isStatement) {\n        node.id = null;\n      } else {\n        throw this.raise(Errors.MissingClassName, this.state.startLoc);\n      }\n    }\n  }\n  parseClassSuper(node) {\n    node.superClass = this.eat(81) ? this.parseExprSubscripts() : null;\n  }\n  parseExport(node, decorators) {\n    const maybeDefaultIdentifier = this.parseMaybeImportPhase(node, true);\n    const hasDefault = this.maybeParseExportDefaultSpecifier(node, maybeDefaultIdentifier);\n    const parseAfterDefault = !hasDefault || this.eat(12);\n    const hasStar = parseAfterDefault && this.eatExportStar(node);\n    const hasNamespace = hasStar && this.maybeParseExportNamespaceSpecifier(node);\n    const parseAfterNamespace = parseAfterDefault && (!hasNamespace || this.eat(12));\n    const isFromRequired = hasDefault || hasStar;\n    if (hasStar && !hasNamespace) {\n      if (hasDefault) this.unexpected();\n      if (decorators) {\n        throw this.raise(Errors.UnsupportedDecoratorExport, node);\n      }\n      this.parseExportFrom(node, true);\n      this.sawUnambiguousESM = true;\n      return this.finishNode(node, \"ExportAllDeclaration\");\n    }\n    const hasSpecifiers = this.maybeParseExportNamedSpecifiers(node);\n    if (hasDefault && parseAfterDefault && !hasStar && !hasSpecifiers) {\n      this.unexpected(null, 5);\n    }\n    if (hasNamespace && parseAfterNamespace) {\n      this.unexpected(null, 98);\n    }\n    let hasDeclaration;\n    if (isFromRequired || hasSpecifiers) {\n      hasDeclaration = false;\n      if (decorators) {\n        throw this.raise(Errors.UnsupportedDecoratorExport, node);\n      }\n      this.parseExportFrom(node, isFromRequired);\n    } else {\n      hasDeclaration = this.maybeParseExportDeclaration(node);\n    }\n    if (isFromRequired || hasSpecifiers || hasDeclaration) {\n      var _node2$declaration;\n      const node2 = node;\n      this.checkExport(node2, true, false, !!node2.source);\n      if (((_node2$declaration = node2.declaration) == null ? void 0 : _node2$declaration.type) === \"ClassDeclaration\") {\n        this.maybeTakeDecorators(decorators, node2.declaration, node2);\n      } else if (decorators) {\n        throw this.raise(Errors.UnsupportedDecoratorExport, node);\n      }\n      this.sawUnambiguousESM = true;\n      return this.finishNode(node2, \"ExportNamedDeclaration\");\n    }\n    if (this.eat(65)) {\n      const node2 = node;\n      const decl = this.parseExportDefaultExpression();\n      node2.declaration = decl;\n      if (decl.type === \"ClassDeclaration\") {\n        this.maybeTakeDecorators(decorators, decl, node2);\n      } else if (decorators) {\n        throw this.raise(Errors.UnsupportedDecoratorExport, node);\n      }\n      this.checkExport(node2, true, true);\n      this.sawUnambiguousESM = true;\n      return this.finishNode(node2, \"ExportDefaultDeclaration\");\n    }\n    throw this.unexpected(null, 5);\n  }\n  eatExportStar(node) {\n    return this.eat(55);\n  }\n  maybeParseExportDefaultSpecifier(node, maybeDefaultIdentifier) {\n    if (maybeDefaultIdentifier || this.isExportDefaultSpecifier()) {\n      this.expectPlugin(\"exportDefaultFrom\", maybeDefaultIdentifier == null ? void 0 : maybeDefaultIdentifier.loc.start);\n      const id = maybeDefaultIdentifier || this.parseIdentifier(true);\n      const specifier = this.startNodeAtNode(id);\n      specifier.exported = id;\n      node.specifiers = [this.finishNode(specifier, \"ExportDefaultSpecifier\")];\n      return true;\n    }\n    return false;\n  }\n  maybeParseExportNamespaceSpecifier(node) {\n    if (this.isContextual(93)) {\n      var _ref, _ref$specifiers;\n      (_ref$specifiers = (_ref = node).specifiers) != null ? _ref$specifiers : _ref.specifiers = [];\n      const specifier = this.startNodeAt(this.state.lastTokStartLoc);\n      this.next();\n      specifier.exported = this.parseModuleExportName();\n      node.specifiers.push(this.finishNode(specifier, \"ExportNamespaceSpecifier\"));\n      return true;\n    }\n    return false;\n  }\n  maybeParseExportNamedSpecifiers(node) {\n    if (this.match(5)) {\n      const node2 = node;\n      if (!node2.specifiers) node2.specifiers = [];\n      const isTypeExport = node2.exportKind === \"type\";\n      node2.specifiers.push(...this.parseExportSpecifiers(isTypeExport));\n      node2.source = null;\n      if (this.hasPlugin(\"importAssertions\")) {\n        node2.assertions = [];\n      } else {\n        node2.attributes = [];\n      }\n      node2.declaration = null;\n      return true;\n    }\n    return false;\n  }\n  maybeParseExportDeclaration(node) {\n    if (this.shouldParseExportDeclaration()) {\n      node.specifiers = [];\n      node.source = null;\n      if (this.hasPlugin(\"importAssertions\")) {\n        node.assertions = [];\n      } else {\n        node.attributes = [];\n      }\n      node.declaration = this.parseExportDeclaration(node);\n      return true;\n    }\n    return false;\n  }\n  isAsyncFunction() {\n    if (!this.isContextual(95)) return false;\n    const next = this.nextTokenInLineStart();\n    return this.isUnparsedContextual(next, \"function\");\n  }\n  parseExportDefaultExpression() {\n    const expr = this.startNode();\n    if (this.match(68)) {\n      this.next();\n      return this.parseFunction(expr, 1 | 4);\n    } else if (this.isAsyncFunction()) {\n      this.next();\n      this.next();\n      return this.parseFunction(expr, 1 | 4 | 8);\n    }\n    if (this.match(80)) {\n      return this.parseClass(expr, true, true);\n    }\n    if (this.match(26)) {\n      if (this.hasPlugin(\"decorators\") && this.getPluginOption(\"decorators\", \"decoratorsBeforeExport\") === true) {\n        this.raise(Errors.DecoratorBeforeExport, this.state.startLoc);\n      }\n      return this.parseClass(this.maybeTakeDecorators(this.parseDecorators(false), this.startNode()), true, true);\n    }\n    if (this.match(75) || this.match(74) || this.isLet() || this.isUsing() || this.isAwaitUsing()) {\n      throw this.raise(Errors.UnsupportedDefaultExport, this.state.startLoc);\n    }\n    const res = this.parseMaybeAssignAllowIn();\n    this.semicolon();\n    return res;\n  }\n  parseExportDeclaration(node) {\n    if (this.match(80)) {\n      const node = this.parseClass(this.startNode(), true, false);\n      return node;\n    }\n    return this.parseStatementListItem();\n  }\n  isExportDefaultSpecifier() {\n    const {\n      type\n    } = this.state;\n    if (tokenIsIdentifier(type)) {\n      if (type === 95 && !this.state.containsEsc || type === 100) {\n        return false;\n      }\n      if ((type === 130 || type === 129) && !this.state.containsEsc) {\n        const next = this.nextTokenStart();\n        const nextChar = this.input.charCodeAt(next);\n        if (nextChar === 123 || this.chStartsBindingIdentifier(nextChar, next) && !this.input.startsWith(\"from\", next)) {\n          this.expectOnePlugin([\"flow\", \"typescript\"]);\n          return false;\n        }\n      }\n    } else if (!this.match(65)) {\n      return false;\n    }\n    const next = this.nextTokenStart();\n    const hasFrom = this.isUnparsedContextual(next, \"from\");\n    if (this.input.charCodeAt(next) === 44 || tokenIsIdentifier(this.state.type) && hasFrom) {\n      return true;\n    }\n    if (this.match(65) && hasFrom) {\n      const nextAfterFrom = this.input.charCodeAt(this.nextTokenStartSince(next + 4));\n      return nextAfterFrom === 34 || nextAfterFrom === 39;\n    }\n    return false;\n  }\n  parseExportFrom(node, expect) {\n    if (this.eatContextual(98)) {\n      node.source = this.parseImportSource();\n      this.checkExport(node);\n      this.maybeParseImportAttributes(node);\n      this.checkJSONModuleImport(node);\n    } else if (expect) {\n      this.unexpected();\n    }\n    this.semicolon();\n  }\n  shouldParseExportDeclaration() {\n    const {\n      type\n    } = this.state;\n    if (type === 26) {\n      this.expectOnePlugin([\"decorators\", \"decorators-legacy\"]);\n      if (this.hasPlugin(\"decorators\")) {\n        if (this.getPluginOption(\"decorators\", \"decoratorsBeforeExport\") === true) {\n          this.raise(Errors.DecoratorBeforeExport, this.state.startLoc);\n        }\n        return true;\n      }\n    }\n    if (this.isUsing()) {\n      this.raise(Errors.UsingDeclarationExport, this.state.startLoc);\n      return true;\n    }\n    if (this.isAwaitUsing()) {\n      this.raise(Errors.UsingDeclarationExport, this.state.startLoc);\n      return true;\n    }\n    return type === 74 || type === 75 || type === 68 || type === 80 || this.isLet() || this.isAsyncFunction();\n  }\n  checkExport(node, checkNames, isDefault, isFrom) {\n    if (checkNames) {\n      var _node$specifiers;\n      if (isDefault) {\n        this.checkDuplicateExports(node, \"default\");\n        if (this.hasPlugin(\"exportDefaultFrom\")) {\n          var _declaration$extra;\n          const declaration = node.declaration;\n          if (declaration.type === \"Identifier\" && declaration.name === \"from\" && declaration.end - declaration.start === 4 && !((_declaration$extra = declaration.extra) != null && _declaration$extra.parenthesized)) {\n            this.raise(Errors.ExportDefaultFromAsIdentifier, declaration);\n          }\n        }\n      } else if ((_node$specifiers = node.specifiers) != null && _node$specifiers.length) {\n        for (const specifier of node.specifiers) {\n          const {\n            exported\n          } = specifier;\n          const exportName = exported.type === \"Identifier\" ? exported.name : exported.value;\n          this.checkDuplicateExports(specifier, exportName);\n          if (!isFrom && specifier.local) {\n            const {\n              local\n            } = specifier;\n            if (local.type !== \"Identifier\") {\n              this.raise(Errors.ExportBindingIsString, specifier, {\n                localName: local.value,\n                exportName\n              });\n            } else {\n              this.checkReservedWord(local.name, local.loc.start, true, false);\n              this.scope.checkLocalExport(local);\n            }\n          }\n        }\n      } else if (node.declaration) {\n        const decl = node.declaration;\n        if (decl.type === \"FunctionDeclaration\" || decl.type === \"ClassDeclaration\") {\n          const {\n            id\n          } = decl;\n          if (!id) throw new Error(\"Assertion failure\");\n          this.checkDuplicateExports(node, id.name);\n        } else if (decl.type === \"VariableDeclaration\") {\n          for (const declaration of decl.declarations) {\n            this.checkDeclaration(declaration.id);\n          }\n        }\n      }\n    }\n  }\n  checkDeclaration(node) {\n    if (node.type === \"Identifier\") {\n      this.checkDuplicateExports(node, node.name);\n    } else if (node.type === \"ObjectPattern\") {\n      for (const prop of node.properties) {\n        this.checkDeclaration(prop);\n      }\n    } else if (node.type === \"ArrayPattern\") {\n      for (const elem of node.elements) {\n        if (elem) {\n          this.checkDeclaration(elem);\n        }\n      }\n    } else if (node.type === \"ObjectProperty\") {\n      this.checkDeclaration(node.value);\n    } else if (node.type === \"RestElement\") {\n      this.checkDeclaration(node.argument);\n    } else if (node.type === \"AssignmentPattern\") {\n      this.checkDeclaration(node.left);\n    }\n  }\n  checkDuplicateExports(node, exportName) {\n    if (this.exportedIdentifiers.has(exportName)) {\n      if (exportName === \"default\") {\n        this.raise(Errors.DuplicateDefaultExport, node);\n      } else {\n        this.raise(Errors.DuplicateExport, node, {\n          exportName\n        });\n      }\n    }\n    this.exportedIdentifiers.add(exportName);\n  }\n  parseExportSpecifiers(isInTypeExport) {\n    const nodes = [];\n    let first = true;\n    this.expect(5);\n    while (!this.eat(8)) {\n      if (first) {\n        first = false;\n      } else {\n        this.expect(12);\n        if (this.eat(8)) break;\n      }\n      const isMaybeTypeOnly = this.isContextual(130);\n      const isString = this.match(134);\n      const node = this.startNode();\n      node.local = this.parseModuleExportName();\n      nodes.push(this.parseExportSpecifier(node, isString, isInTypeExport, isMaybeTypeOnly));\n    }\n    return nodes;\n  }\n  parseExportSpecifier(node, isString, isInTypeExport, isMaybeTypeOnly) {\n    if (this.eatContextual(93)) {\n      node.exported = this.parseModuleExportName();\n    } else if (isString) {\n      node.exported = this.cloneStringLiteral(node.local);\n    } else if (!node.exported) {\n      node.exported = this.cloneIdentifier(node.local);\n    }\n    return this.finishNode(node, \"ExportSpecifier\");\n  }\n  parseModuleExportName() {\n    if (this.match(134)) {\n      const result = this.parseStringLiteral(this.state.value);\n      const surrogate = loneSurrogate.exec(result.value);\n      if (surrogate) {\n        this.raise(Errors.ModuleExportNameHasLoneSurrogate, result, {\n          surrogateCharCode: surrogate[0].charCodeAt(0)\n        });\n      }\n      return result;\n    }\n    return this.parseIdentifier(true);\n  }\n  isJSONModuleImport(node) {\n    if (node.assertions != null) {\n      return node.assertions.some(({\n        key,\n        value\n      }) => {\n        return value.value === \"json\" && (key.type === \"Identifier\" ? key.name === \"type\" : key.value === \"type\");\n      });\n    }\n    return false;\n  }\n  checkImportReflection(node) {\n    const {\n      specifiers\n    } = node;\n    const singleBindingType = specifiers.length === 1 ? specifiers[0].type : null;\n    if (node.phase === \"source\") {\n      if (singleBindingType !== \"ImportDefaultSpecifier\") {\n        this.raise(Errors.SourcePhaseImportRequiresDefault, specifiers[0].loc.start);\n      }\n    } else if (node.phase === \"defer\") {\n      if (singleBindingType !== \"ImportNamespaceSpecifier\") {\n        this.raise(Errors.DeferImportRequiresNamespace, specifiers[0].loc.start);\n      }\n    } else if (node.module) {\n      var _node$assertions;\n      if (singleBindingType !== \"ImportDefaultSpecifier\") {\n        this.raise(Errors.ImportReflectionNotBinding, specifiers[0].loc.start);\n      }\n      if (((_node$assertions = node.assertions) == null ? void 0 : _node$assertions.length) > 0) {\n        this.raise(Errors.ImportReflectionHasAssertion, specifiers[0].loc.start);\n      }\n    }\n  }\n  checkJSONModuleImport(node) {\n    if (this.isJSONModuleImport(node) && node.type !== \"ExportAllDeclaration\") {\n      const {\n        specifiers\n      } = node;\n      if (specifiers != null) {\n        const nonDefaultNamedSpecifier = specifiers.find(specifier => {\n          let imported;\n          if (specifier.type === \"ExportSpecifier\") {\n            imported = specifier.local;\n          } else if (specifier.type === \"ImportSpecifier\") {\n            imported = specifier.imported;\n          }\n          if (imported !== undefined) {\n            return imported.type === \"Identifier\" ? imported.name !== \"default\" : imported.value !== \"default\";\n          }\n        });\n        if (nonDefaultNamedSpecifier !== undefined) {\n          this.raise(Errors.ImportJSONBindingNotDefault, nonDefaultNamedSpecifier.loc.start);\n        }\n      }\n    }\n  }\n  isPotentialImportPhase(isExport) {\n    if (isExport) return false;\n    return this.isContextual(105) || this.isContextual(97) || this.isContextual(127);\n  }\n  applyImportPhase(node, isExport, phase, loc) {\n    if (isExport) {\n      return;\n    }\n    if (phase === \"module\") {\n      this.expectPlugin(\"importReflection\", loc);\n      node.module = true;\n    } else if (this.hasPlugin(\"importReflection\")) {\n      node.module = false;\n    }\n    if (phase === \"source\") {\n      this.expectPlugin(\"sourcePhaseImports\", loc);\n      node.phase = \"source\";\n    } else if (phase === \"defer\") {\n      this.expectPlugin(\"deferredImportEvaluation\", loc);\n      node.phase = \"defer\";\n    } else if (this.hasPlugin(\"sourcePhaseImports\")) {\n      node.phase = null;\n    }\n  }\n  parseMaybeImportPhase(node, isExport) {\n    if (!this.isPotentialImportPhase(isExport)) {\n      this.applyImportPhase(node, isExport, null);\n      return null;\n    }\n    const phaseIdentifier = this.startNode();\n    const phaseIdentifierName = this.parseIdentifierName(true);\n    const {\n      type\n    } = this.state;\n    const isImportPhase = tokenIsKeywordOrIdentifier(type) ? type !== 98 || this.lookaheadCharCode() === 102 : type !== 12;\n    if (isImportPhase) {\n      this.applyImportPhase(node, isExport, phaseIdentifierName, phaseIdentifier.loc.start);\n      return null;\n    } else {\n      this.applyImportPhase(node, isExport, null);\n      return this.createIdentifier(phaseIdentifier, phaseIdentifierName);\n    }\n  }\n  isPrecedingIdImportPhase(phase) {\n    const {\n      type\n    } = this.state;\n    return tokenIsIdentifier(type) ? type !== 98 || this.lookaheadCharCode() === 102 : type !== 12;\n  }\n  parseImport(node) {\n    if (this.match(134)) {\n      return this.parseImportSourceAndAttributes(node);\n    }\n    return this.parseImportSpecifiersAndAfter(node, this.parseMaybeImportPhase(node, false));\n  }\n  parseImportSpecifiersAndAfter(node, maybeDefaultIdentifier) {\n    node.specifiers = [];\n    const hasDefault = this.maybeParseDefaultImportSpecifier(node, maybeDefaultIdentifier);\n    const parseNext = !hasDefault || this.eat(12);\n    const hasStar = parseNext && this.maybeParseStarImportSpecifier(node);\n    if (parseNext && !hasStar) this.parseNamedImportSpecifiers(node);\n    this.expectContextual(98);\n    return this.parseImportSourceAndAttributes(node);\n  }\n  parseImportSourceAndAttributes(node) {\n    var _node$specifiers2;\n    (_node$specifiers2 = node.specifiers) != null ? _node$specifiers2 : node.specifiers = [];\n    node.source = this.parseImportSource();\n    this.maybeParseImportAttributes(node);\n    this.checkImportReflection(node);\n    this.checkJSONModuleImport(node);\n    this.semicolon();\n    this.sawUnambiguousESM = true;\n    return this.finishNode(node, \"ImportDeclaration\");\n  }\n  parseImportSource() {\n    if (!this.match(134)) this.unexpected();\n    return this.parseExprAtom();\n  }\n  parseImportSpecifierLocal(node, specifier, type) {\n    specifier.local = this.parseIdentifier();\n    node.specifiers.push(this.finishImportSpecifier(specifier, type));\n  }\n  finishImportSpecifier(specifier, type, bindingType = 8201) {\n    this.checkLVal(specifier.local, {\n      type\n    }, bindingType);\n    return this.finishNode(specifier, type);\n  }\n  parseImportAttributes() {\n    this.expect(5);\n    const attrs = [];\n    const attrNames = new Set();\n    do {\n      if (this.match(8)) {\n        break;\n      }\n      const node = this.startNode();\n      const keyName = this.state.value;\n      if (attrNames.has(keyName)) {\n        this.raise(Errors.ModuleAttributesWithDuplicateKeys, this.state.startLoc, {\n          key: keyName\n        });\n      }\n      attrNames.add(keyName);\n      if (this.match(134)) {\n        node.key = this.parseStringLiteral(keyName);\n      } else {\n        node.key = this.parseIdentifier(true);\n      }\n      this.expect(14);\n      if (!this.match(134)) {\n        throw this.raise(Errors.ModuleAttributeInvalidValue, this.state.startLoc);\n      }\n      node.value = this.parseStringLiteral(this.state.value);\n      attrs.push(this.finishNode(node, \"ImportAttribute\"));\n    } while (this.eat(12));\n    this.expect(8);\n    return attrs;\n  }\n  parseModuleAttributes() {\n    const attrs = [];\n    const attributes = new Set();\n    do {\n      const node = this.startNode();\n      node.key = this.parseIdentifier(true);\n      if (node.key.name !== \"type\") {\n        this.raise(Errors.ModuleAttributeDifferentFromType, node.key);\n      }\n      if (attributes.has(node.key.name)) {\n        this.raise(Errors.ModuleAttributesWithDuplicateKeys, node.key, {\n          key: node.key.name\n        });\n      }\n      attributes.add(node.key.name);\n      this.expect(14);\n      if (!this.match(134)) {\n        throw this.raise(Errors.ModuleAttributeInvalidValue, this.state.startLoc);\n      }\n      node.value = this.parseStringLiteral(this.state.value);\n      attrs.push(this.finishNode(node, \"ImportAttribute\"));\n    } while (this.eat(12));\n    return attrs;\n  }\n  maybeParseImportAttributes(node) {\n    let attributes;\n    {\n      var useWith = false;\n    }\n    if (this.match(76)) {\n      if (this.hasPrecedingLineBreak() && this.lookaheadCharCode() === 40) {\n        return;\n      }\n      this.next();\n      if (this.hasPlugin(\"moduleAttributes\")) {\n        attributes = this.parseModuleAttributes();\n        this.addExtra(node, \"deprecatedWithLegacySyntax\", true);\n      } else {\n        attributes = this.parseImportAttributes();\n      }\n      {\n        useWith = true;\n      }\n    } else if (this.isContextual(94) && !this.hasPrecedingLineBreak()) {\n      if (!this.hasPlugin(\"deprecatedImportAssert\") && !this.hasPlugin(\"importAssertions\")) {\n        this.raise(Errors.ImportAttributesUseAssert, this.state.startLoc);\n      }\n      if (!this.hasPlugin(\"importAssertions\")) {\n        this.addExtra(node, \"deprecatedAssertSyntax\", true);\n      }\n      this.next();\n      attributes = this.parseImportAttributes();\n    } else {\n      attributes = [];\n    }\n    if (!useWith && this.hasPlugin(\"importAssertions\")) {\n      node.assertions = attributes;\n    } else {\n      node.attributes = attributes;\n    }\n  }\n  maybeParseDefaultImportSpecifier(node, maybeDefaultIdentifier) {\n    if (maybeDefaultIdentifier) {\n      const specifier = this.startNodeAtNode(maybeDefaultIdentifier);\n      specifier.local = maybeDefaultIdentifier;\n      node.specifiers.push(this.finishImportSpecifier(specifier, \"ImportDefaultSpecifier\"));\n      return true;\n    } else if (tokenIsKeywordOrIdentifier(this.state.type)) {\n      this.parseImportSpecifierLocal(node, this.startNode(), \"ImportDefaultSpecifier\");\n      return true;\n    }\n    return false;\n  }\n  maybeParseStarImportSpecifier(node) {\n    if (this.match(55)) {\n      const specifier = this.startNode();\n      this.next();\n      this.expectContextual(93);\n      this.parseImportSpecifierLocal(node, specifier, \"ImportNamespaceSpecifier\");\n      return true;\n    }\n    return false;\n  }\n  parseNamedImportSpecifiers(node) {\n    let first = true;\n    this.expect(5);\n    while (!this.eat(8)) {\n      if (first) {\n        first = false;\n      } else {\n        if (this.eat(14)) {\n          throw this.raise(Errors.DestructureNamedImport, this.state.startLoc);\n        }\n        this.expect(12);\n        if (this.eat(8)) break;\n      }\n      const specifier = this.startNode();\n      const importedIsString = this.match(134);\n      const isMaybeTypeOnly = this.isContextual(130);\n      specifier.imported = this.parseModuleExportName();\n      const importSpecifier = this.parseImportSpecifier(specifier, importedIsString, node.importKind === \"type\" || node.importKind === \"typeof\", isMaybeTypeOnly, undefined);\n      node.specifiers.push(importSpecifier);\n    }\n  }\n  parseImportSpecifier(specifier, importedIsString, isInTypeOnlyImport, isMaybeTypeOnly, bindingType) {\n    if (this.eatContextual(93)) {\n      specifier.local = this.parseIdentifier();\n    } else {\n      const {\n        imported\n      } = specifier;\n      if (importedIsString) {\n        throw this.raise(Errors.ImportBindingIsString, specifier, {\n          importName: imported.value\n        });\n      }\n      this.checkReservedWord(imported.name, specifier.loc.start, true, true);\n      if (!specifier.local) {\n        specifier.local = this.cloneIdentifier(imported);\n      }\n    }\n    return this.finishImportSpecifier(specifier, \"ImportSpecifier\", bindingType);\n  }\n  isThisParam(param) {\n    return param.type === \"Identifier\" && param.name === \"this\";\n  }\n}\nclass Parser extends StatementParser {\n  constructor(options, input, pluginsMap) {\n    const normalizedOptions = getOptions(options);\n    super(normalizedOptions, input);\n    this.options = normalizedOptions;\n    this.initializeScopes();\n    this.plugins = pluginsMap;\n    this.filename = normalizedOptions.sourceFilename;\n    this.startIndex = normalizedOptions.startIndex;\n    let optionFlags = 0;\n    if (normalizedOptions.allowAwaitOutsideFunction) {\n      optionFlags |= 1;\n    }\n    if (normalizedOptions.allowReturnOutsideFunction) {\n      optionFlags |= 2;\n    }\n    if (normalizedOptions.allowImportExportEverywhere) {\n      optionFlags |= 8;\n    }\n    if (normalizedOptions.allowSuperOutsideMethod) {\n      optionFlags |= 16;\n    }\n    if (normalizedOptions.allowUndeclaredExports) {\n      optionFlags |= 64;\n    }\n    if (normalizedOptions.allowNewTargetOutsideFunction) {\n      optionFlags |= 4;\n    }\n    if (normalizedOptions.allowYieldOutsideFunction) {\n      optionFlags |= 32;\n    }\n    if (normalizedOptions.ranges) {\n      optionFlags |= 128;\n    }\n    if (normalizedOptions.tokens) {\n      optionFlags |= 256;\n    }\n    if (normalizedOptions.createImportExpressions) {\n      optionFlags |= 512;\n    }\n    if (normalizedOptions.createParenthesizedExpressions) {\n      optionFlags |= 1024;\n    }\n    if (normalizedOptions.errorRecovery) {\n      optionFlags |= 2048;\n    }\n    if (normalizedOptions.attachComment) {\n      optionFlags |= 4096;\n    }\n    if (normalizedOptions.annexB) {\n      optionFlags |= 8192;\n    }\n    this.optionFlags = optionFlags;\n  }\n  getScopeHandler() {\n    return ScopeHandler;\n  }\n  parse() {\n    this.enterInitialScopes();\n    const file = this.startNode();\n    const program = this.startNode();\n    this.nextToken();\n    file.errors = null;\n    const result = this.parseTopLevel(file, program);\n    result.errors = this.state.errors;\n    result.comments.length = this.state.commentsLen;\n    return result;\n  }\n}\nfunction parse(input, options) {\n  var _options;\n  if (((_options = options) == null ? void 0 : _options.sourceType) === \"unambiguous\") {\n    options = Object.assign({}, options);\n    try {\n      options.sourceType = \"module\";\n      const parser = getParser(options, input);\n      const ast = parser.parse();\n      if (parser.sawUnambiguousESM) {\n        return ast;\n      }\n      if (parser.ambiguousScriptDifferentAst) {\n        try {\n          options.sourceType = \"script\";\n          return getParser(options, input).parse();\n        } catch (_unused) {}\n      } else {\n        ast.program.sourceType = \"script\";\n      }\n      return ast;\n    } catch (moduleError) {\n      try {\n        options.sourceType = \"script\";\n        return getParser(options, input).parse();\n      } catch (_unused2) {}\n      throw moduleError;\n    }\n  } else {\n    return getParser(options, input).parse();\n  }\n}\nfunction parseExpression(input, options) {\n  const parser = getParser(options, input);\n  if (parser.options.strictMode) {\n    parser.state.strict = true;\n  }\n  return parser.getExpression();\n}\nfunction generateExportedTokenTypes(internalTokenTypes) {\n  const tokenTypes = {};\n  for (const typeName of Object.keys(internalTokenTypes)) {\n    tokenTypes[typeName] = getExportedToken(internalTokenTypes[typeName]);\n  }\n  return tokenTypes;\n}\nconst tokTypes = generateExportedTokenTypes(tt);\nfunction getParser(options, input) {\n  let cls = Parser;\n  const pluginsMap = new Map();\n  if (options != null && options.plugins) {\n    for (const plugin of options.plugins) {\n      let name, opts;\n      if (typeof plugin === \"string\") {\n        name = plugin;\n      } else {\n        [name, opts] = plugin;\n      }\n      if (!pluginsMap.has(name)) {\n        pluginsMap.set(name, opts || {});\n      }\n    }\n    validatePlugins(pluginsMap);\n    cls = getParserClass(pluginsMap);\n  }\n  return new cls(options, input, pluginsMap);\n}\nconst parserClassCache = new Map();\nfunction getParserClass(pluginsMap) {\n  const pluginList = [];\n  for (const name of mixinPluginNames) {\n    if (pluginsMap.has(name)) {\n      pluginList.push(name);\n    }\n  }\n  const key = pluginList.join(\"|\");\n  let cls = parserClassCache.get(key);\n  if (!cls) {\n    cls = Parser;\n    for (const plugin of pluginList) {\n      cls = mixinPlugins[plugin](cls);\n    }\n    parserClassCache.set(key, cls);\n  }\n  return cls;\n}\nexports.parse = parse;\nexports.parseExpression = parseExpression;\nexports.tokTypes = tokTypes;\n//# sourceMappingURL=index.js.map\n","import { extname } from \"pathe\";\nimport { parse, parseExpression } from \"@babel/parser\";\n\n//#region src/check.ts\n/**\n* Checks if the given node matches the specified type(s).\n*\n* @param node - The node to check.\n* @param types - The type(s) to match against. It can be a single type or an array of types.\n* @returns True if the node matches the specified type(s), false otherwise.\n*/\nfunction isTypeOf(node, types) {\n\tif (!node) return false;\n\treturn [].concat(types).some((type) => {\n\t\tswitch (type) {\n\t\t\tcase \"Function\": return isFunctionType(node);\n\t\t\tcase \"Literal\": return isLiteralType(node);\n\t\t\tcase \"Expression\": return isExpressionType(node);\n\t\t\tdefault: return node.type === type;\n\t\t}\n\t});\n}\n/**\n* Checks if the given node is a CallExpression with the specified callee.\n*\n* @param node - The node to check.\n* @param test - The callee to compare against. It can be a string, an array of strings, or a function that takes a string and returns a boolean.\n* @returns True if the node is a CallExpression with the specified callee, false otherwise.\n*/\nfunction isCallOf(node, test) {\n\treturn !!node && node.type === \"CallExpression\" && isIdentifierOf(node.callee, test);\n}\n/**\n* Checks if the given node is a TaggedTemplateExpression with the specified callee.\n*\n* @param node - The node to check.\n* @param test - The callee to compare against. It can be a string, an array of strings, or a function that takes a string and returns a boolean.\n* @returns True if the node is a TaggedTemplateExpression with the specified callee, false otherwise.\n*/\nfunction isTaggedFunctionCallOf(node, test) {\n\treturn !!node && node.type === \"TaggedTemplateExpression\" && isIdentifierOf(node.tag, test);\n}\n/**\n* Checks if the given node is an Identifier with the specified name.\n*\n* @param node - The node to check.\n* @param test - The name to compare against. It can be a string or an array of strings.\n* @returns True if the node is an Identifier with the specified name, false otherwise.\n*/\nfunction isIdentifierOf(node, test) {\n\treturn isIdentifier(node) && match(node.name, test);\n}\n/**\n* Checks if the given node is a literal type.\n*\n* @param node - The node to check.\n* @returns True if the node is a literal type, false otherwise.\n*/\nfunction isLiteralType(node) {\n\treturn !!node && node.type.endsWith(\"Literal\");\n}\n/**\n* Checks if the given node is a function type.\n*\n* @param node - The node to check.\n* @returns True if the node is a function type, false otherwise.\n*/\nfunction isFunctionType(node) {\n\treturn !!node && !node.type.startsWith(\"TS\") && /Function(?:Expression|Declaration)$|Method$/.test(node.type);\n}\n/**\n* Checks if the given node is a declaration type.\n*\n* @param node - The node to check.\n* @returns True if the node is a declaration type, false otherwise.\n*/\nfunction isDeclarationType(node) {\n\tif (!node) return false;\n\tswitch (node.type) {\n\t\tcase \"FunctionDeclaration\":\n\t\tcase \"VariableDeclaration\":\n\t\tcase \"ClassDeclaration\":\n\t\tcase \"ExportAllDeclaration\":\n\t\tcase \"ExportDefaultDeclaration\":\n\t\tcase \"ExportNamedDeclaration\":\n\t\tcase \"ImportDeclaration\":\n\t\tcase \"DeclareClass\":\n\t\tcase \"DeclareFunction\":\n\t\tcase \"DeclareInterface\":\n\t\tcase \"DeclareModule\":\n\t\tcase \"DeclareModuleExports\":\n\t\tcase \"DeclareTypeAlias\":\n\t\tcase \"DeclareOpaqueType\":\n\t\tcase \"DeclareVariable\":\n\t\tcase \"DeclareExportDeclaration\":\n\t\tcase \"DeclareExportAllDeclaration\":\n\t\tcase \"InterfaceDeclaration\":\n\t\tcase \"OpaqueType\":\n\t\tcase \"TypeAlias\":\n\t\tcase \"EnumDeclaration\":\n\t\tcase \"TSDeclareFunction\":\n\t\tcase \"TSInterfaceDeclaration\":\n\t\tcase \"TSTypeAliasDeclaration\":\n\t\tcase \"TSEnumDeclaration\":\n\t\tcase \"TSModuleDeclaration\": return true;\n\t\tcase \"Placeholder\": if (node.expectedNode === \"Declaration\") return true;\n\t}\n\treturn false;\n}\n/**\n* Checks if the given node is an expression type.\n*\n* @param node - The node to check.\n* @returns True if the node is an expression type, false otherwise.\n*/\nfunction isExpressionType(node) {\n\treturn !!node && (node.type.endsWith(\"Expression\") || isLiteralType(node) || [\n\t\t\"Identifier\",\n\t\t\"MetaProperty\",\n\t\t\"Super\",\n\t\t\"Import\",\n\t\t\"JSXElement\",\n\t\t\"JSXFragment\",\n\t\t\"TopicReference\",\n\t\t\"PipelineBareFunction\",\n\t\t\"PipelinePrimaryTopicReference\",\n\t\t\"TSTypeAssertion\"\n\t].includes(node.type));\n}\nfunction match(value, test) {\n\tif (Array.isArray(test)) return test.includes(value);\n\tif (typeof test === \"function\") return test(value);\n\treturn value === test;\n}\n/* v8 ignore next -- @preserve */\n/**\n* Checks if the input `node` is a reference to a bound variable.\n*\n* Copied from https://github.com/babel/babel/blob/main/packages/babel-types/src/validators/isReferenced.ts\n*\n* To avoid runtime dependency on `@babel/types` (which includes process references)\n* This file should not change very often in babel but we may need to keep it\n* up-to-date from time to time.\n*\n* @param node - The node to check.\n* @param parent - The parent node of the input `node`.\n* @param grandparent - The grandparent node of the input `node`.\n* @returns True if the input `node` is a reference to a bound variable, false otherwise.\n*/\nfunction isReferenced(node, parent, grandparent) {\n\tswitch (parent.type) {\n\t\tcase \"MemberExpression\":\n\t\tcase \"OptionalMemberExpression\":\n\t\t\tif (parent.property === node) return !!parent.computed;\n\t\t\treturn parent.object === node;\n\t\tcase \"JSXMemberExpression\": return parent.object === node;\n\t\tcase \"VariableDeclarator\": return parent.init === node;\n\t\tcase \"ArrowFunctionExpression\": return parent.body === node;\n\t\tcase \"PrivateName\": return false;\n\t\tcase \"ClassMethod\":\n\t\tcase \"ClassPrivateMethod\":\n\t\tcase \"ObjectMethod\":\n\t\t\tif (parent.key === node) return !!parent.computed;\n\t\t\treturn false;\n\t\tcase \"ObjectProperty\":\n\t\t\tif (parent.key === node) return !!parent.computed;\n\t\t\treturn !grandparent || grandparent.type !== \"ObjectPattern\";\n\t\tcase \"ClassProperty\":\n\t\tcase \"ClassAccessorProperty\":\n\t\t\tif (parent.key === node) return !!parent.computed;\n\t\t\treturn true;\n\t\tcase \"ClassPrivateProperty\": return parent.key !== node;\n\t\tcase \"ClassDeclaration\":\n\t\tcase \"ClassExpression\": return parent.superClass === node;\n\t\tcase \"AssignmentExpression\": return parent.right === node;\n\t\tcase \"AssignmentPattern\": return parent.right === node;\n\t\tcase \"LabeledStatement\": return false;\n\t\tcase \"CatchClause\": return false;\n\t\tcase \"RestElement\": return false;\n\t\tcase \"BreakStatement\":\n\t\tcase \"ContinueStatement\": return false;\n\t\tcase \"FunctionDeclaration\":\n\t\tcase \"FunctionExpression\": return false;\n\t\tcase \"ExportNamespaceSpecifier\":\n\t\tcase \"ExportDefaultSpecifier\": return false;\n\t\tcase \"ExportSpecifier\":\n\t\t\tif (grandparent?.source) return false;\n\t\t\treturn parent.local === node;\n\t\tcase \"ImportDefaultSpecifier\":\n\t\tcase \"ImportNamespaceSpecifier\":\n\t\tcase \"ImportSpecifier\": return false;\n\t\tcase \"ImportAttribute\": return false;\n\t\tcase \"JSXAttribute\":\n\t\tcase \"JSXNamespacedName\": return false;\n\t\tcase \"ObjectPattern\":\n\t\tcase \"ArrayPattern\": return false;\n\t\tcase \"MetaProperty\": return false;\n\t\tcase \"ObjectTypeProperty\": return parent.key !== node;\n\t\tcase \"TSEnumMember\": return parent.id !== node;\n\t\tcase \"TSPropertySignature\":\n\t\t\tif (parent.key === node) return !!parent.computed;\n\t\t\treturn true;\n\t}\n\treturn true;\n}\nfunction isIdentifier(node) {\n\treturn !!node && (node.type === \"Identifier\" || node.type === \"JSXIdentifier\");\n}\nfunction isStaticProperty(node) {\n\treturn !!node && (node.type === \"ObjectProperty\" || node.type === \"ObjectMethod\") && !node.computed;\n}\nfunction isStaticPropertyKey(node, parent) {\n\treturn isStaticProperty(parent) && parent.key === node;\n}\nfunction isForStatement(stmt) {\n\treturn stmt.type === \"ForOfStatement\" || stmt.type === \"ForInStatement\" || stmt.type === \"ForStatement\";\n}\nfunction isReferencedIdentifier(id, parent, parentStack) {\n\tif (!parent) return true;\n\tif (id.name === \"arguments\") return false;\n\tif (isReferenced(id, parent, parentStack.at(-2))) return true;\n\tswitch (parent.type) {\n\t\tcase \"AssignmentExpression\":\n\t\tcase \"AssignmentPattern\": return true;\n\t\tcase \"ObjectProperty\": return parent.key !== id && isInDestructureAssignment(parent, parentStack);\n\t\tcase \"ArrayPattern\": return isInDestructureAssignment(parent, parentStack);\n\t}\n\treturn false;\n}\nfunction isInDestructureAssignment(parent, parentStack) {\n\tif (parent && (parent.type === \"ObjectProperty\" || parent.type === \"ArrayPattern\")) {\n\t\tlet i = parentStack.length;\n\t\twhile (i--) {\n\t\t\tconst p = parentStack[i];\n\t\t\tif (p.type === \"AssignmentExpression\") return true;\n\t\t\telse if (p.type !== \"ObjectProperty\" && !p.type.endsWith(\"Pattern\")) break;\n\t\t}\n\t}\n\treturn false;\n}\nfunction isInNewExpression(parentStack) {\n\tlet i = parentStack.length;\n\twhile (i--) {\n\t\tconst p = parentStack[i];\n\t\tif (p.type === \"NewExpression\") return true;\n\t\telse if (p.type !== \"MemberExpression\") break;\n\t}\n\treturn false;\n}\n\n//#endregion\n//#region src/create.ts\n/**\n* Creates a string literal AST node.\n*\n* @param value - The value of the string literal.\n* @returns The string literal AST node.\n*/\nfunction createStringLiteral(value) {\n\treturn {\n\t\ttype: \"StringLiteral\",\n\t\tvalue,\n\t\textra: {\n\t\t\trawValue: value,\n\t\t\traw: JSON.stringify(value)\n\t\t}\n\t};\n}\n/**\n* Creates a TypeScript union type AST node.\n*\n* @param types - An array of TypeScript types.\n* @returns The TypeScript union type AST node.\n*/\nfunction createTSUnionType(types) {\n\treturn {\n\t\ttype: \"TSUnionType\",\n\t\ttypes\n\t};\n}\n/**\n* Creates a TypeScript literal type AST node.\n*\n* @param literal - The literal value.\n* @returns The TypeScript literal type AST node.\n*/\nfunction createTSLiteralType(literal) {\n\treturn {\n\t\ttype: \"TSLiteralType\",\n\t\tliteral\n\t};\n}\n\n//#endregion\n//#region src/extract.ts\n/**\n* Extract identifiers of the given node.\n* @param node The node to extract.\n* @param identifiers The array to store the extracted identifiers.\n* @see https://github.com/vuejs/core/blob/1f6a1102aa09960f76a9af2872ef01e7da8538e3/packages/compiler-core/src/babelUtils.ts#L208\n*/\nfunction extractIdentifiers(node, identifiers = []) {\n\tswitch (node.type) {\n\t\tcase \"Identifier\":\n\t\tcase \"JSXIdentifier\":\n\t\t\tidentifiers.push(node);\n\t\t\tbreak;\n\t\tcase \"MemberExpression\":\n\t\tcase \"JSXMemberExpression\": {\n\t\t\tlet object = node;\n\t\t\twhile (object.type === \"MemberExpression\") object = object.object;\n\t\t\tidentifiers.push(object);\n\t\t\tbreak;\n\t\t}\n\t\tcase \"ObjectPattern\":\n\t\t\tfor (const prop of node.properties) if (prop.type === \"RestElement\") extractIdentifiers(prop.argument, identifiers);\n\t\t\telse extractIdentifiers(prop.value, identifiers);\n\t\t\tbreak;\n\t\tcase \"ArrayPattern\":\n\t\t\tnode.elements.forEach((element) => {\n\t\t\t\telement && extractIdentifiers(element, identifiers);\n\t\t\t});\n\t\t\tbreak;\n\t\tcase \"RestElement\":\n\t\t\textractIdentifiers(node.argument, identifiers);\n\t\t\tbreak;\n\t\tcase \"AssignmentPattern\":\n\t\t\textractIdentifiers(node.left, identifiers);\n\t\t\tbreak;\n\t}\n\treturn identifiers;\n}\n\n//#endregion\n//#region src/lang.ts\nconst REGEX_DTS = /\\.d\\.[cm]?ts(\\?.*)?$/;\nconst REGEX_LANG_TS = /^[cm]?tsx?$/;\nconst REGEX_LANG_JSX = /^[cm]?[jt]sx$/;\n/**\n* Returns the language (extension name) of a given filename.\n* @param filename - The name of the file.\n* @returns The language of the file.\n*/\nfunction getLang(filename) {\n\tif (isDts(filename)) return \"dts\";\n\treturn extname(filename).replace(/^\\./, \"\").replace(/\\?.*$/, \"\");\n}\n/**\n* Checks if a filename represents a TypeScript declaration file (.d.ts).\n* @param filename - The name of the file to check.\n* @returns A boolean value indicating whether the filename is a TypeScript declaration file.\n*/\nfunction isDts(filename) {\n\treturn REGEX_DTS.test(filename);\n}\n/**\n* Checks if the given language (ts, mts, cjs, dts, tsx...) is TypeScript.\n* @param lang - The language to check.\n* @returns A boolean indicating whether the language is TypeScript.\n*/\nfunction isTs(lang) {\n\treturn !!lang && (lang === \"dts\" || REGEX_LANG_TS.test(lang));\n}\n\n//#endregion\n//#region src/loc.ts\n/**\n* Locates the trailing comma in the given code within the specified range.\n*\n* @param code - The code to search for the trailing comma.\n* @param start - The start index of the range to search within.\n* @param end - The end index of the range to search within.\n* @param comments - Optional array of comments to exclude from the search range.\n* @returns The index of the trailing comma, or -1 if not found.\n*/\nfunction locateTrailingComma(code, start, end, comments = []) {\n\tlet i = start;\n\twhile (i < end) {\n\t\tif (comments.some((c) => i >= c.start && i < c.end)) {\n\t\t\ti++;\n\t\t\tcontinue;\n\t\t}\n\t\tconst char = code[i];\n\t\tif ([\"}\", \")\"].includes(char)) return -1;\n\t\tif (char === \",\") return i;\n\t\ti++;\n\t}\n\treturn -1;\n}\n\n//#endregion\n//#region src/parse.ts\nfunction hasPlugin(plugins, plugin) {\n\treturn plugins.some((p) => (Array.isArray(p) ? p[0] : p) === plugin);\n}\n/**\n* Gets the Babel parser options for the given language.\n* @param lang - The language of the code (optional).\n* @param options - The parser options (optional).\n* @returns The Babel parser options for the given language.\n*/\nfunction getBabelParserOptions(lang, options = {}) {\n\tconst plugins = [...options.plugins || []];\n\tif (isTs(lang)) {\n\t\tif (!hasPlugin(plugins, \"typescript\")) plugins.push(lang === \"dts\" ? [\"typescript\", { dts: true }] : \"typescript\");\n\t\tif (!hasPlugin(plugins, \"decorators\") && !hasPlugin(plugins, \"decorators-legacy\")) plugins.push(\"decorators-legacy\");\n\t\tif (!hasPlugin(plugins, \"importAttributes\") && !hasPlugin(plugins, \"importAssertions\") && !hasPlugin(plugins, \"deprecatedImportAssert\")) plugins.push(\"importAttributes\", \"deprecatedImportAssert\");\n\t\tif (!hasPlugin(plugins, \"explicitResourceManagement\")) plugins.push(\"explicitResourceManagement\");\n\t\tif (REGEX_LANG_JSX.test(lang) && !hasPlugin(plugins, \"jsx\")) plugins.push(\"jsx\");\n\t} else if (!hasPlugin(plugins, \"jsx\")) plugins.push(\"jsx\");\n\treturn {\n\t\tsourceType: \"module\",\n\t\t...options,\n\t\tplugins\n\t};\n}\n/**\n* Parses the given code using Babel parser.\n*\n* @param code - The code to parse.\n* @param lang - The language of the code (optional).\n* @param options - The parser options (optional).\n* @param options.cache - Whether to cache the result (optional).\n* @returns The parse result, including the program, errors, and comments.\n*/\nfunction babelParse(code, lang, { cache,...options } = {}) {\n\tlet result;\n\tif (cache) result = parseCache.get(code);\n\tif (!result) {\n\t\tresult = parse(code, getBabelParserOptions(lang, options));\n\t\tif (cache) parseCache.set(code, result);\n\t}\n\tconst { program, type,...rest } = result;\n\treturn {\n\t\t...program,\n\t\t...rest\n\t};\n}\nconst parseCache = /* @__PURE__ */ new Map();\n/**\n* Parses the given code using the Babel parser as an expression.\n*\n* @template T - The type of the parsed AST node.\n* @param {string} code - The code to parse.\n* @param {string} [lang] - The language to parse. Defaults to undefined.\n* @param {ParserOptions} [options] - The options to configure the parser. Defaults to an empty object.\n* @returns {ParseResult<T>} - The result of the parsing operation.\n*/\nfunction babelParseExpression(code, lang, options = {}) {\n\treturn parseExpression(code, getBabelParserOptions(lang, options));\n}\n\n//#endregion\n//#region src/resolve.ts\n/**\n* Resolves a string representation of the given node.\n* @param node The node to resolve.\n* @param computed Whether the node is computed or not.\n* @returns The resolved string representation of the node.\n*/\nfunction resolveString(node, computed = false) {\n\tif (typeof node === \"string\") return node;\n\telse switch (node.type) {\n\t\tcase \"Identifier\":\n\t\t\tif (computed) throw new TypeError(\"Invalid Identifier\");\n\t\t\treturn node.name;\n\t\tcase \"PrivateName\": return `#${node.id.name}`;\n\t\tcase \"ThisExpression\": return \"this\";\n\t\tcase \"Super\": return \"super\";\n\t}\n\treturn String(resolveLiteral(node));\n}\n/**\n* Resolves the value of a literal node.\n* @param node The literal node to resolve.\n* @returns The resolved value of the literal node.\n*/\nfunction resolveLiteral(node) {\n\tswitch (node.type) {\n\t\tcase \"TemplateLiteral\": return resolveTemplateLiteral(node);\n\t\tcase \"NullLiteral\": return null;\n\t\tcase \"BigIntLiteral\": return BigInt(node.value);\n\t\tcase \"RegExpLiteral\": return new RegExp(node.pattern, node.flags);\n\t\tcase \"BooleanLiteral\":\n\t\tcase \"NumericLiteral\":\n\t\tcase \"StringLiteral\": return node.value;\n\t\tcase \"DecimalLiteral\": return Number(node.value);\n\t}\n}\n/**\n* Resolves a template literal node into a string.\n* @param node The template literal node to resolve.\n* @returns The resolved string representation of the template literal.\n*/\nfunction resolveTemplateLiteral(node) {\n\treturn node.quasis.reduce((prev, curr, idx) => {\n\t\tconst expr = node.expressions[idx];\n\t\tif (expr) {\n\t\t\tif (!isLiteralType(expr)) throw new TypeError(\"TemplateLiteral expression must be a literal\");\n\t\t\treturn prev + curr.value.cooked + resolveLiteral(expr);\n\t\t}\n\t\treturn prev + curr.value.cooked;\n\t}, \"\");\n}\n/**\n* Resolves the identifier node into an array of strings.\n* @param node The identifier node to resolve.\n* @returns An array of resolved strings representing the identifier.\n* @throws TypeError If the identifier is invalid.\n*/\nfunction resolveIdentifier(node) {\n\tif (isTypeOf(node, [\n\t\t\"Identifier\",\n\t\t\"PrivateName\",\n\t\t\"ThisExpression\",\n\t\t\"Super\"\n\t])) return [resolveString(node)];\n\tconst left = node.type === \"TSQualifiedName\" ? node.left : node.object;\n\tconst right = node.type === \"TSQualifiedName\" ? node.right : node.property;\n\tconst computed = node.type === \"TSQualifiedName\" ? false : node.computed;\n\tif (isTypeOf(left, [\n\t\t\"Identifier\",\n\t\t\"MemberExpression\",\n\t\t\"ThisExpression\",\n\t\t\"Super\",\n\t\t\"TSQualifiedName\"\n\t])) {\n\t\tconst keys = resolveIdentifier(left);\n\t\tif (isTypeOf(right, [\n\t\t\t\"Identifier\",\n\t\t\t\"PrivateName\",\n\t\t\t\"Literal\"\n\t\t])) keys.push(resolveString(right, computed));\n\t\telse throw new TypeError(\"Invalid Identifier\");\n\t\treturn keys;\n\t}\n\tthrow new TypeError(\"Invalid Identifier\");\n}\nfunction tryResolveIdentifier(...args) {\n\ttry {\n\t\treturn resolveIdentifier(...args);\n\t} catch {\n\t\treturn;\n\t}\n}\nfunction resolveObjectKey(node, raw = false) {\n\tconst { key, computed } = node;\n\tswitch (key.type) {\n\t\tcase \"StringLiteral\":\n\t\tcase \"NumericLiteral\": return raw ? key.extra.raw : key.value;\n\t\tcase \"Identifier\":\n\t\t\tif (!computed) return raw ? `\"${key.name}\"` : key.name;\n\t\t\tthrow \"Cannot resolve computed Identifier\";\n\t\tdefault: throw new SyntaxError(`Unexpected node type: ${key.type}`);\n\t}\n}\n\n//#endregion\n//#region node_modules/.pnpm/estree-walker@3.0.3/node_modules/estree-walker/src/walker.js\n/**\n* @typedef { import('estree').Node} Node\n* @typedef {{\n*   skip: () => void;\n*   remove: () => void;\n*   replace: (node: Node) => void;\n* }} WalkerContext\n*/\nvar WalkerBase = class {\n\tconstructor() {\n\t\t/** @type {boolean} */\n\t\tthis.should_skip = false;\n\t\t/** @type {boolean} */\n\t\tthis.should_remove = false;\n\t\t/** @type {Node | null} */\n\t\tthis.replacement = null;\n\t\t/** @type {WalkerContext} */\n\t\tthis.context = {\n\t\t\tskip: () => this.should_skip = true,\n\t\t\tremove: () => this.should_remove = true,\n\t\t\treplace: (node) => this.replacement = node\n\t\t};\n\t}\n\t/**\n\t* @template {Node} Parent\n\t* @param {Parent | null | undefined} parent\n\t* @param {keyof Parent | null | undefined} prop\n\t* @param {number | null | undefined} index\n\t* @param {Node} node\n\t*/\n\treplace(parent, prop, index, node) {\n\t\tif (parent && prop) if (index != null)\n /** @type {Array<Node>} */ parent[prop][index] = node;\n\t\telse\n /** @type {Node} */ parent[prop] = node;\n\t}\n\t/**\n\t* @template {Node} Parent\n\t* @param {Parent | null | undefined} parent\n\t* @param {keyof Parent | null | undefined} prop\n\t* @param {number | null | undefined} index\n\t*/\n\tremove(parent, prop, index) {\n\t\tif (parent && prop) if (index !== null && index !== void 0)\n /** @type {Array<Node>} */ parent[prop].splice(index, 1);\n\t\telse delete parent[prop];\n\t}\n};\n\n//#endregion\n//#region node_modules/.pnpm/estree-walker@3.0.3/node_modules/estree-walker/src/sync.js\n/**\n* @typedef { import('estree').Node} Node\n* @typedef { import('./walker.js').WalkerContext} WalkerContext\n* @typedef {(\n*    this: WalkerContext,\n*    node: Node,\n*    parent: Node | null,\n*    key: string | number | symbol | null | undefined,\n*    index: number | null | undefined\n* ) => void} SyncHandler\n*/\nvar SyncWalker = class extends WalkerBase {\n\t/**\n\t*\n\t* @param {SyncHandler} [enter]\n\t* @param {SyncHandler} [leave]\n\t*/\n\tconstructor(enter, leave) {\n\t\tsuper();\n\t\t/** @type {boolean} */\n\t\tthis.should_skip = false;\n\t\t/** @type {boolean} */\n\t\tthis.should_remove = false;\n\t\t/** @type {Node | null} */\n\t\tthis.replacement = null;\n\t\t/** @type {WalkerContext} */\n\t\tthis.context = {\n\t\t\tskip: () => this.should_skip = true,\n\t\t\tremove: () => this.should_remove = true,\n\t\t\treplace: (node) => this.replacement = node\n\t\t};\n\t\t/** @type {SyncHandler | undefined} */\n\t\tthis.enter = enter;\n\t\t/** @type {SyncHandler | undefined} */\n\t\tthis.leave = leave;\n\t}\n\t/**\n\t* @template {Node} Parent\n\t* @param {Node} node\n\t* @param {Parent | null} parent\n\t* @param {keyof Parent} [prop]\n\t* @param {number | null} [index]\n\t* @returns {Node | null}\n\t*/\n\tvisit(node, parent, prop, index) {\n\t\tif (node) {\n\t\t\tif (this.enter) {\n\t\t\t\tconst _should_skip = this.should_skip;\n\t\t\t\tconst _should_remove = this.should_remove;\n\t\t\t\tconst _replacement = this.replacement;\n\t\t\t\tthis.should_skip = false;\n\t\t\t\tthis.should_remove = false;\n\t\t\t\tthis.replacement = null;\n\t\t\t\tthis.enter.call(this.context, node, parent, prop, index);\n\t\t\t\tif (this.replacement) {\n\t\t\t\t\tnode = this.replacement;\n\t\t\t\t\tthis.replace(parent, prop, index, node);\n\t\t\t\t}\n\t\t\t\tif (this.should_remove) this.remove(parent, prop, index);\n\t\t\t\tconst skipped = this.should_skip;\n\t\t\t\tconst removed = this.should_remove;\n\t\t\t\tthis.should_skip = _should_skip;\n\t\t\t\tthis.should_remove = _should_remove;\n\t\t\t\tthis.replacement = _replacement;\n\t\t\t\tif (skipped) return node;\n\t\t\t\tif (removed) return null;\n\t\t\t}\n\t\t\t/** @type {keyof Node} */\n\t\t\tlet key;\n\t\t\tfor (key in node) {\n\t\t\t\t/** @type {unknown} */\n\t\t\t\tconst value = node[key];\n\t\t\t\tif (value && typeof value === \"object\") {\n\t\t\t\t\tif (Array.isArray(value)) {\n\t\t\t\t\t\tconst nodes = value;\n\t\t\t\t\t\tfor (let i = 0; i < nodes.length; i += 1) {\n\t\t\t\t\t\t\tconst item = nodes[i];\n\t\t\t\t\t\t\tif (isNode$1(item)) {\n\t\t\t\t\t\t\t\tif (!this.visit(item, node, key, i)) i--;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (isNode$1(value)) this.visit(value, node, key, null);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (this.leave) {\n\t\t\t\tconst _replacement = this.replacement;\n\t\t\t\tconst _should_remove = this.should_remove;\n\t\t\t\tthis.replacement = null;\n\t\t\t\tthis.should_remove = false;\n\t\t\t\tthis.leave.call(this.context, node, parent, prop, index);\n\t\t\t\tif (this.replacement) {\n\t\t\t\t\tnode = this.replacement;\n\t\t\t\t\tthis.replace(parent, prop, index, node);\n\t\t\t\t}\n\t\t\t\tif (this.should_remove) this.remove(parent, prop, index);\n\t\t\t\tconst removed = this.should_remove;\n\t\t\t\tthis.replacement = _replacement;\n\t\t\t\tthis.should_remove = _should_remove;\n\t\t\t\tif (removed) return null;\n\t\t\t}\n\t\t}\n\t\treturn node;\n\t}\n};\n/**\n* Ducktype a node.\n*\n* @param {unknown} value\n* @returns {value is Node}\n*/\nfunction isNode$1(value) {\n\treturn value !== null && typeof value === \"object\" && \"type\" in value && typeof value.type === \"string\";\n}\n\n//#endregion\n//#region node_modules/.pnpm/estree-walker@3.0.3/node_modules/estree-walker/src/async.js\n/**\n* @typedef { import('estree').Node} Node\n* @typedef { import('./walker.js').WalkerContext} WalkerContext\n* @typedef {(\n*    this: WalkerContext,\n*    node: Node,\n*    parent: Node | null,\n*    key: string | number | symbol | null | undefined,\n*    index: number | null | undefined\n* ) => Promise<void>} AsyncHandler\n*/\nvar AsyncWalker = class extends WalkerBase {\n\t/**\n\t*\n\t* @param {AsyncHandler} [enter]\n\t* @param {AsyncHandler} [leave]\n\t*/\n\tconstructor(enter, leave) {\n\t\tsuper();\n\t\t/** @type {boolean} */\n\t\tthis.should_skip = false;\n\t\t/** @type {boolean} */\n\t\tthis.should_remove = false;\n\t\t/** @type {Node | null} */\n\t\tthis.replacement = null;\n\t\t/** @type {WalkerContext} */\n\t\tthis.context = {\n\t\t\tskip: () => this.should_skip = true,\n\t\t\tremove: () => this.should_remove = true,\n\t\t\treplace: (node) => this.replacement = node\n\t\t};\n\t\t/** @type {AsyncHandler | undefined} */\n\t\tthis.enter = enter;\n\t\t/** @type {AsyncHandler | undefined} */\n\t\tthis.leave = leave;\n\t}\n\t/**\n\t* @template {Node} Parent\n\t* @param {Node} node\n\t* @param {Parent | null} parent\n\t* @param {keyof Parent} [prop]\n\t* @param {number | null} [index]\n\t* @returns {Promise<Node | null>}\n\t*/\n\tasync visit(node, parent, prop, index) {\n\t\tif (node) {\n\t\t\tif (this.enter) {\n\t\t\t\tconst _should_skip = this.should_skip;\n\t\t\t\tconst _should_remove = this.should_remove;\n\t\t\t\tconst _replacement = this.replacement;\n\t\t\t\tthis.should_skip = false;\n\t\t\t\tthis.should_remove = false;\n\t\t\t\tthis.replacement = null;\n\t\t\t\tawait this.enter.call(this.context, node, parent, prop, index);\n\t\t\t\tif (this.replacement) {\n\t\t\t\t\tnode = this.replacement;\n\t\t\t\t\tthis.replace(parent, prop, index, node);\n\t\t\t\t}\n\t\t\t\tif (this.should_remove) this.remove(parent, prop, index);\n\t\t\t\tconst skipped = this.should_skip;\n\t\t\t\tconst removed = this.should_remove;\n\t\t\t\tthis.should_skip = _should_skip;\n\t\t\t\tthis.should_remove = _should_remove;\n\t\t\t\tthis.replacement = _replacement;\n\t\t\t\tif (skipped) return node;\n\t\t\t\tif (removed) return null;\n\t\t\t}\n\t\t\t/** @type {keyof Node} */\n\t\t\tlet key;\n\t\t\tfor (key in node) {\n\t\t\t\t/** @type {unknown} */\n\t\t\t\tconst value = node[key];\n\t\t\t\tif (value && typeof value === \"object\") {\n\t\t\t\t\tif (Array.isArray(value)) {\n\t\t\t\t\t\tconst nodes = value;\n\t\t\t\t\t\tfor (let i = 0; i < nodes.length; i += 1) {\n\t\t\t\t\t\t\tconst item = nodes[i];\n\t\t\t\t\t\t\tif (isNode(item)) {\n\t\t\t\t\t\t\t\tif (!await this.visit(item, node, key, i)) i--;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (isNode(value)) await this.visit(value, node, key, null);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (this.leave) {\n\t\t\t\tconst _replacement = this.replacement;\n\t\t\t\tconst _should_remove = this.should_remove;\n\t\t\t\tthis.replacement = null;\n\t\t\t\tthis.should_remove = false;\n\t\t\t\tawait this.leave.call(this.context, node, parent, prop, index);\n\t\t\t\tif (this.replacement) {\n\t\t\t\t\tnode = this.replacement;\n\t\t\t\t\tthis.replace(parent, prop, index, node);\n\t\t\t\t}\n\t\t\t\tif (this.should_remove) this.remove(parent, prop, index);\n\t\t\t\tconst removed = this.should_remove;\n\t\t\t\tthis.replacement = _replacement;\n\t\t\t\tthis.should_remove = _should_remove;\n\t\t\t\tif (removed) return null;\n\t\t\t}\n\t\t}\n\t\treturn node;\n\t}\n};\n/**\n* Ducktype a node.\n*\n* @param {unknown} value\n* @returns {value is Node}\n*/\nfunction isNode(value) {\n\treturn value !== null && typeof value === \"object\" && \"type\" in value && typeof value.type === \"string\";\n}\n\n//#endregion\n//#region node_modules/.pnpm/estree-walker@3.0.3/node_modules/estree-walker/src/index.js\n/**\n* @typedef {import('estree').Node} Node\n* @typedef {import('./sync.js').SyncHandler} SyncHandler\n* @typedef {import('./async.js').AsyncHandler} AsyncHandler\n*/\n/**\n* @param {Node} ast\n* @param {{\n*   enter?: SyncHandler\n*   leave?: SyncHandler\n* }} walker\n* @returns {Node | null}\n*/\nfunction walk(ast, { enter, leave }) {\n\treturn new SyncWalker(enter, leave).visit(ast, null);\n}\n/**\n* @param {Node} ast\n* @param {{\n*   enter?: AsyncHandler\n*   leave?: AsyncHandler\n* }} walker\n* @returns {Promise<Node | null>}\n*/\nasync function asyncWalk(ast, { enter, leave }) {\n\treturn await new AsyncWalker(enter, leave).visit(ast, null);\n}\n\n//#endregion\n//#region src/utils.ts\nconst TS_NODE_TYPES = [\n\t\"TSAsExpression\",\n\t\"TSTypeAssertion\",\n\t\"TSNonNullExpression\",\n\t\"TSInstantiationExpression\",\n\t\"TSSatisfiesExpression\"\n];\n/**\n* Unwraps a TypeScript node by recursively traversing the AST until a non-TypeScript node is found.\n* @param node - The TypeScript node to unwrap.\n* @returns The unwrapped node.\n*/\nfunction unwrapTSNode(node) {\n\tif (isTypeOf(node, TS_NODE_TYPES)) return unwrapTSNode(node.expression);\n\telse return node;\n}\n/**\n* Escapes a raw key by checking if it needs to be wrapped with quotes or not.\n*\n* @param rawKey - The raw key to escape.\n* @returns The escaped key.\n*/\nfunction escapeKey(rawKey) {\n\tif (String(+rawKey) === rawKey) return rawKey;\n\ttry {\n\t\tif (parseExpression(`({${rawKey}: 1})`).properties[0].key.type === \"Identifier\") return rawKey;\n\t} catch {}\n\treturn JSON.stringify(rawKey);\n}\n\n//#endregion\n//#region src/walk.ts\n/**\n* Walks the AST and applies the provided handlers.\n*\n* @template T - The type of the AST node.\n* @param {T} node - The root node of the AST.\n* @param {WalkHandlers<T, void>} hooks - The handlers to be applied during the walk.\n* @returns {T | null} - The modified AST node or null if the node is removed.\n*/\nconst walkAST = walk;\n/**\n* Asynchronously walks the AST starting from the given node,\n* applying the provided handlers to each node encountered.\n*\n* @template T - The type of the AST node.\n* @param {T} node - The root node of the AST.\n* @param {WalkHandlers<T, Promise<void>>} handlers - The handlers to be applied to each node.\n* @returns {Promise<T | null>} - A promise that resolves to the modified AST or null if the AST is empty.\n*/\nconst walkASTAsync = asyncWalk;\n/**\n* Walks through an ImportDeclaration node and populates the provided imports object.\n*\n* @param imports - The object to store the import bindings.\n* @param node - The ImportDeclaration node to walk through.\n*/\nfunction walkImportDeclaration(imports, node) {\n\tif (node.importKind === \"type\") return;\n\tconst source = node.source.value;\n\tfor (const specifier of node.specifiers) {\n\t\tconst isType = specifier.type === \"ImportSpecifier\" && specifier.importKind === \"type\";\n\t\tconst local = specifier.local.name;\n\t\timports[local] = {\n\t\t\tsource,\n\t\t\tlocal,\n\t\t\timported: specifier.type === \"ImportSpecifier\" ? resolveString(specifier.imported) : specifier.type === \"ImportNamespaceSpecifier\" ? \"*\" : \"default\",\n\t\t\tspecifier,\n\t\t\tisType\n\t\t};\n\t}\n}\n/**\n* Walks through an ExportDeclaration node and populates the exports object with the relevant information.\n* @param exports - The object to store the export information.\n* @param node - The ExportDeclaration node to process.\n*/\nfunction walkExportDeclaration(exports, node) {\n\tlet local;\n\tlet exported;\n\tlet isType;\n\tlet source;\n\tlet specifier;\n\tlet declaration;\n\tfunction setExport() {\n\t\texports[exported] = {\n\t\t\tsource,\n\t\t\tlocal,\n\t\t\texported,\n\t\t\tspecifier,\n\t\t\tisType,\n\t\t\tdeclaration\n\t\t};\n\t}\n\tif (node.type === \"ExportNamedDeclaration\") {\n\t\tif (node.specifiers.length) for (const s of node.specifiers) {\n\t\t\tconst isExportSpecifier = s.type === \"ExportSpecifier\";\n\t\t\tisType = node.exportKind === \"type\" || isExportSpecifier && s.exportKind === \"type\";\n\t\t\tlocal = isExportSpecifier ? s.local.name : s.type === \"ExportNamespaceSpecifier\" ? \"*\" : \"default\";\n\t\t\tsource = node.source ? node.source.value : null;\n\t\t\texported = isExportSpecifier ? resolveString(s.exported) : s.exported.name;\n\t\t\tdeclaration = null;\n\t\t\tspecifier = s;\n\t\t\tsetExport();\n\t\t}\n\t\telse if (!node.specifiers.length && node.declaration) {\n\t\t\t/* v8 ignore else -- @preserve */\n\t\t\tif (node.declaration.type === \"VariableDeclaration\") for (const decl of node.declaration.declarations) {\n\t\t\t\t/* v8 ignore if -- @preserve */\n\t\t\t\tif (decl.id.type !== \"Identifier\") continue;\n\t\t\t\tlocal = resolveString(decl.id);\n\t\t\t\tsource = null;\n\t\t\t\texported = local;\n\t\t\t\tisType = node.exportKind === \"type\";\n\t\t\t\tdeclaration = node.declaration;\n\t\t\t\tspecifier = null;\n\t\t\t\tsetExport();\n\t\t\t}\n\t\t\telse if (\"id\" in node.declaration && node.declaration.id && node.declaration.id.type === \"Identifier\") {\n\t\t\t\tlocal = resolveString(node.declaration.id);\n\t\t\t\tsource = null;\n\t\t\t\texported = local;\n\t\t\t\tisType = node.exportKind === \"type\";\n\t\t\t\tdeclaration = node.declaration;\n\t\t\t\tspecifier = null;\n\t\t\t\tsetExport();\n\t\t\t}\n\t\t}\n\t\treturn;\n\t} else if (node.type === \"ExportDefaultDeclaration\") {\n\t\tif (isExpressionType(node.declaration)) local = \"name\" in node.declaration ? node.declaration.name : \"default\";\n\t\telse local = resolveString(node.declaration.id || \"default\");\n\t\tsource = null;\n\t\texported = \"default\";\n\t\tisType = false;\n\t\tdeclaration = node.declaration;\n\t\tspecifier = null;\n\t} else {\n\t\tlocal = \"*\";\n\t\tsource = resolveString(node.source);\n\t\texported = \"*\";\n\t\tisType = node.exportKind === \"type\";\n\t\tspecifier = null;\n\t\tdeclaration = null;\n\t}\n\tsetExport();\n}\n/**\n* Modified from https://github.com/vuejs/core/blob/main/packages/compiler-core/src/babelUtils.ts\n* To support browser environments and JSX.\n*\n* https://github.com/vuejs/core/blob/main/LICENSE\n*/\n/**\n* Return value indicates whether the AST walked can be a constant\n*/\nfunction walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [], knownIds = Object.create(null)) {\n\tconst rootExp = root.type === \"Program\" ? root.body[0].type === \"ExpressionStatement\" && root.body[0].expression : root;\n\twalkAST(root, {\n\t\tenter(node, parent) {\n\t\t\tparent && parentStack.push(parent);\n\t\t\tif (parent && parent.type.startsWith(\"TS\") && !TS_NODE_TYPES.includes(parent.type)) return this.skip();\n\t\t\tif (isIdentifier(node)) {\n\t\t\t\tconst isLocal = !!knownIds[node.name];\n\t\t\t\tconst isRefed = isReferencedIdentifier(node, parent, parentStack);\n\t\t\t\tif (includeAll || isRefed && !isLocal) onIdentifier(node, parent, parentStack, isRefed, isLocal);\n\t\t\t} else if (node.type === \"ObjectProperty\" && parent?.type === \"ObjectPattern\") node.inPattern = true;\n\t\t\telse if (isFunctionType(node))\n /* v8 ignore if -- @preserve */\n\t\t\tif (node.scopeIds) node.scopeIds.forEach((id) => markKnownIds(id, knownIds));\n\t\t\telse walkFunctionParams(node, (id) => markScopeIdentifier(node, id, knownIds));\n\t\t\telse if (node.type === \"BlockStatement\")\n /* v8 ignore if -- @preserve */\n\t\t\tif (node.scopeIds) node.scopeIds.forEach((id) => markKnownIds(id, knownIds));\n\t\t\telse walkBlockDeclarations(node, (id) => markScopeIdentifier(node, id, knownIds));\n\t\t\telse if (node.type === \"CatchClause\" && node.param) for (const id of extractIdentifiers(node.param)) markScopeIdentifier(node, id, knownIds);\n\t\t\telse if (isForStatement(node)) walkForStatement(node, false, (id) => markScopeIdentifier(node, id, knownIds));\n\t\t},\n\t\tleave(node, parent) {\n\t\t\tparent && parentStack.pop();\n\t\t\tif (node !== rootExp && node.scopeIds) for (const id of node.scopeIds) {\n\t\t\t\tknownIds[id]--;\n\t\t\t\tif (knownIds[id] === 0) delete knownIds[id];\n\t\t\t}\n\t\t}\n\t});\n}\nfunction walkFunctionParams(node, onIdent) {\n\tfor (const p of node.params) for (const id of extractIdentifiers(p)) onIdent(id);\n}\nfunction walkBlockDeclarations(block, onIdent) {\n\tfor (const stmt of block.body) if (stmt.type === \"VariableDeclaration\") {\n\t\tif (stmt.declare) continue;\n\t\tfor (const decl of stmt.declarations) for (const id of extractIdentifiers(decl.id)) onIdent(id);\n\t} else if (stmt.type === \"FunctionDeclaration\" || stmt.type === \"ClassDeclaration\") {\n\t\t/* v8 ignore if -- @preserve */\n\t\tif (stmt.declare || !stmt.id) continue;\n\t\tonIdent(stmt.id);\n\t} else if (isForStatement(stmt)) walkForStatement(stmt, true, onIdent);\n}\nfunction walkForStatement(stmt, isVar, onIdent) {\n\tconst variable = stmt.type === \"ForStatement\" ? stmt.init : stmt.left;\n\tif (variable && variable.type === \"VariableDeclaration\" && (variable.kind === \"var\" ? isVar : !isVar)) for (const decl of variable.declarations) for (const id of extractIdentifiers(decl.id)) onIdent(id);\n}\nfunction markKnownIds(name, knownIds) {\n\tif (name in knownIds) knownIds[name]++;\n\telse knownIds[name] = 1;\n}\nfunction markScopeIdentifier(node, child, knownIds) {\n\tconst { name } = child;\n\t/* v8 ignore if -- @preserve */\n\tif (node.scopeIds && node.scopeIds.has(name)) return;\n\tmarkKnownIds(name, knownIds);\n\t(node.scopeIds || (node.scopeIds = /* @__PURE__ */ new Set())).add(name);\n}\n\n//#endregion\n//#region src/scope.ts\n/* v8 ignore file -- @preserve */\nconst extractors = {\n\tArrayPattern(names, param) {\n\t\tfor (const element of param.elements) if (element) extractors[element.type](names, element);\n\t},\n\tAssignmentPattern(names, param) {\n\t\textractors[param.left.type](names, param.left);\n\t},\n\tIdentifier(names, param) {\n\t\tnames.push(param.name);\n\t},\n\tMemberExpression() {},\n\tObjectPattern(names, param) {\n\t\tfor (const prop of param.properties) if (prop.type === \"RestElement\") extractors.RestElement(names, prop);\n\t\telse extractors[prop.value.type](names, prop.value);\n\t},\n\tRestElement(names, param) {\n\t\textractors[param.argument.type](names, param.argument);\n\t}\n};\nfunction extractAssignedNames(param) {\n\tconst names = [];\n\textractors[param.type](names, param);\n\treturn names;\n}\nconst blockDeclarations = {\n\tconst: true,\n\tlet: true\n};\n/**\n* Represents a scope.\n*/\nvar Scope = class {\n\tparent;\n\tisBlockScope;\n\tdeclarations;\n\tconstructor(options = {}) {\n\t\tthis.parent = options.parent;\n\t\tthis.isBlockScope = !!options.block;\n\t\tthis.declarations = Object.create(null);\n\t\tif (options.params) options.params.forEach((param) => {\n\t\t\textractAssignedNames(param).forEach((name) => {\n\t\t\t\tthis.declarations[name] = true;\n\t\t\t});\n\t\t});\n\t}\n\taddDeclaration(node, isBlockDeclaration, isVar) {\n\t\tif (!isBlockDeclaration && this.isBlockScope) this.parent.addDeclaration(node, isBlockDeclaration, isVar);\n\t\telse if (node.id) extractAssignedNames(node.id).forEach((name) => {\n\t\t\tthis.declarations[name] = true;\n\t\t});\n\t}\n\tcontains(name) {\n\t\treturn this.declarations[name] || (this.parent ? this.parent.contains(name) : false);\n\t}\n};\n/**\n* Attaches scopes to the given AST\n*\n* @param ast - The AST to attach scopes to.\n* @param propertyName - The name of the property to attach the scopes to. Default is 'scope'.\n* @returns The root scope of the AST.\n*/\nfunction attachScopes(ast, propertyName = \"scope\") {\n\tlet scope = new Scope();\n\twalkAST(ast, {\n\t\tenter(node, parent) {\n\t\t\tif (/(?:Function|Class)Declaration/.test(node.type)) scope.addDeclaration(node, false, false);\n\t\t\tif (node.type === \"VariableDeclaration\") {\n\t\t\t\tconst { kind } = node;\n\t\t\t\tconst isBlockDeclaration = blockDeclarations[kind];\n\t\t\t\tnode.declarations.forEach((declaration) => {\n\t\t\t\t\tscope.addDeclaration(declaration, isBlockDeclaration, true);\n\t\t\t\t});\n\t\t\t}\n\t\t\tlet newScope;\n\t\t\tif (/Function/.test(node.type)) {\n\t\t\t\tconst func = node;\n\t\t\t\tnewScope = new Scope({\n\t\t\t\t\tparent: scope,\n\t\t\t\t\tblock: false,\n\t\t\t\t\tparams: func.params\n\t\t\t\t});\n\t\t\t\tif (func.type === \"FunctionExpression\" && func.id) newScope.addDeclaration(func, false, false);\n\t\t\t}\n\t\t\tif (/For(?:In|Of)?Statement/.test(node.type)) newScope = new Scope({\n\t\t\t\tparent: scope,\n\t\t\t\tblock: true\n\t\t\t});\n\t\t\tif (node.type === \"BlockStatement\" && !/Function/.test(parent.type)) newScope = new Scope({\n\t\t\t\tparent: scope,\n\t\t\t\tblock: true\n\t\t\t});\n\t\t\tif (node.type === \"CatchClause\") newScope = new Scope({\n\t\t\t\tparent: scope,\n\t\t\t\tparams: node.param ? [node.param] : [],\n\t\t\t\tblock: true\n\t\t\t});\n\t\t\tif (newScope) {\n\t\t\t\tObject.defineProperty(node, propertyName, {\n\t\t\t\t\tvalue: newScope,\n\t\t\t\t\tconfigurable: true\n\t\t\t\t});\n\t\t\t\tscope = newScope;\n\t\t\t}\n\t\t},\n\t\tleave(node) {\n\t\t\tif (node[propertyName]) scope = scope.parent;\n\t\t}\n\t});\n\treturn scope;\n}\n\n//#endregion\nexport { REGEX_DTS, REGEX_LANG_JSX, REGEX_LANG_TS, Scope, TS_NODE_TYPES, attachScopes, babelParse, babelParseExpression, parse as babelParseFile, createStringLiteral, createTSLiteralType, createTSUnionType, escapeKey, extractIdentifiers, getBabelParserOptions, getLang, isCallOf, isDeclarationType, isDts, isExpressionType, isForStatement, isFunctionType, isIdentifier, isIdentifierOf, isInDestructureAssignment, isInNewExpression, isLiteralType, isReferenced, isReferencedIdentifier, isStaticProperty, isStaticPropertyKey, isTaggedFunctionCallOf, isTs, isTypeOf, locateTrailingComma, parseCache, resolveIdentifier, resolveLiteral, resolveObjectKey, resolveString, resolveTemplateLiteral, tryResolveIdentifier, unwrapTSNode, walkAST, walkASTAsync, walkBlockDeclarations, walkExportDeclaration, walkFunctionParams, walkIdentifiers, walkImportDeclaration };","import type {\n  CallExpression,\n  ExportDefaultDeclaration,\n  Node,\n  ObjectExpression,\n  Program,\n  TemplateLiteral,\n} from '@babel/types'\nimport { walkAST } from 'ast-kit'\n\nexport function getDefaultExports(program: Program) {\n  const defaultExports: ExportDefaultDeclaration[] = []\n\n  walkAST(program, {\n    enter(node) {\n      // 匹配 export default\n      // 虽然标准语法中只支持一个默认导出，但是这里支持多个默认导出节点的收集\n      if (node.type === 'ExportDefaultDeclaration') {\n        defaultExports.push(node)\n      }\n      // export 只能出现在顶层，遇到块级作用域直接跳过\n      if (node.type === 'BlockStatement' || node.type === 'FunctionDeclaration') {\n        this.skip()\n      }\n    },\n  })\n\n  return defaultExports\n}\n\nexport function getDynamicImports(program: Program) {\n  const imports: Array<{\n    path: unknown\n    node: CallExpression\n    isStatic: boolean\n  }> = []\n\n  walkAST(program, {\n    enter(node) {\n      // 识别动态 import 语法： import(...)\n      // 在 Babel AST 中表现为 CallExpression，且 callee 类型为 Import\n      if (node.type === 'CallExpression' && node.callee.type === 'Import') {\n        const firstArg = node.arguments[0]\n\n        // 利用 parseValue 进行静态求值\n        // 这意味着 import('path/' + 'to/file') 这种拼接也能被解析出来\n        const value = parseValue(firstArg)\n        // 收集结果\n        imports.push({\n          path: value,\n          node,\n          // 如果解析出的是字符串，说明是纯静态路径；如果是 [Identifier: x] 说明依赖变量\n          isStatic: typeof value === 'string' && !String(value).includes('[Identifier:'),\n        })\n      }\n    },\n  })\n  return imports\n}\n\nexport function serializeObjectExpression(node: ObjectExpression) {\n  // 确保传入的是对象表达式\n  if (node.type !== 'ObjectExpression') {\n    throw new Error('Not an ObjectExpression')\n  }\n\n  const result: Record<string, unknown> = {}\n\n  node.properties.forEach((prop) => {\n    // 处理常见的属性（Property），排除 SpreadElement（如 ...obj）\n    if (prop.type === 'ObjectProperty') {\n      let key\n\n      // 处理 key (例如 { a: 1 } 或 { \"a\": 1 })\n      if (prop.computed) {\n        // 如果是计算属性 [key]: value，简单静态处理可能拿不到值，这里通常抛错或跳过\n        console.warn('Computed properties are not supported in static serialization')\n        return\n      }\n      else {\n        // 处理 Identifier (a) 或 StringLiteral (\"a\")\n        // @ts-expect-error ignore\n        key = prop.key.name || prop.key.value\n      }\n\n      // 处理 value (递归解析)\n      // 如果存在相同 key，则将会记录到最后一项\n      result[key] = parseValue(prop.value)\n    }\n  })\n\n  return result\n}\n\nexport function parseValue(node?: Node | null): unknown {\n  if (!node)\n    return node\n\n  switch (node.type) {\n    case 'StringLiteral':\n    case 'NumericLiteral':\n    case 'BooleanLiteral':\n      return node.value\n    case 'NullLiteral':\n      return null\n    case 'BigIntLiteral':\n      return BigInt(node.value)\n    case 'RegExpLiteral':\n      return new RegExp(node.pattern, node.flags)\n    case 'ObjectExpression':\n      return serializeObjectExpression(node)\n    case 'ArrayExpression':\n      return node.elements.map((el) => {\n        return el ? parseValue(el) : null\n      })\n    case 'BinaryExpression': {\n      const left = parseValue(node.left)\n      const right = parseValue(node.right)\n\n      // 如果左右任一端无法静态解析（例如引用了变量），则整体返回 undefined 或占位符\n      if ((typeof left === 'string' && left.startsWith('[')) || (typeof right === 'string' && right.startsWith('['))) {\n        return `[BinaryExpression: ${node.operator}]`\n      }\n\n      switch (node.operator) {\n        case '+': return (left as any) + (right as any)\n        case '-': return (left as any) - (right as any)\n        case '*': return (left as any) * (right as any)\n        case '/': return (left as any) / (right as any)\n        case '%': return (left as any) % (right as any)\n        case '**': return (left as any) ** (right as any)\n          // eslint-disable-next-line eqeqeq\n        case '==': return left == right\n        case '===': return left === right\n          // eslint-disable-next-line eqeqeq\n        case '!=': return left != right\n        case '!==': return left !== right\n        case '>': return (left as any) > (right as any)\n        case '<': return (left as any) < (right as any)\n        default: return `[Unsupported Operator: ${node.operator}]`\n      }\n    }\n    // 逻辑表达式\n    case 'LogicalExpression': {\n      const left = parseValue(node.left)\n      // 模拟 JS 的短路逻辑\n      if (node.operator === '&&')\n        return left && parseValue(node.right)\n      if (node.operator === '||')\n        return left || parseValue(node.right)\n      if (node.operator === '??')\n        return left ?? parseValue(node.right)\n      return undefined\n    }\n    case 'TemplateLiteral':\n      // 如果是没有变量的模板字符串\n      return parseTemplateLiteral(node)\n    case 'UnaryExpression': {\n      const { operator, argument } = node\n      const value = parseValue(argument) // 递归获取参数值\n\n      // 如果参数无法解析出静态值，则整体无法解析\n      if (value === undefined)\n        return undefined\n\n      switch (operator) {\n        case '-': return -(value as any)\n        case '+': return +(value as any)\n        case '!': return !value\n        case '~': return ~(value as any)\n        case 'void': return undefined\n        default: return `[${operator}: ${value}]` // 其余如 typeof, delete 无法静态化\n      }\n    }\n    case 'Identifier':\n      // 如果遇到变量引用，静态环境下无法得知具体值，通常返回变量名字符串或占位符\n      return `[Identifier: ${node.name}]`\n    default:\n      return `[Unhandled: ${node.type}]`\n  }\n}\n\n/**\n * 模版字符串 ast 转成文本\n * @param node TemplateLiteral\n */\nexport function parseTemplateLiteral(node: TemplateLiteral) {\n  let result = ''\n  const quasis = node.quasis\n  const expressions = node.expressions\n\n  for (let i = 0; i < quasis.length; i++) {\n    result += quasis[i].value.cooked\n\n    if (i < expressions.length) {\n      // result += `\\${${expressions[i].type}}`\n      const expr = expressions[i]\n      // 尝试递归解析值\n      const value = parseValue(expr)\n\n      // 如果解析出了具体值（比如常量），直接拼进去\n      if (typeof value === 'string' || typeof value === 'number') {\n        result += value\n      }\n      else {\n        // 如果无法解析（是变量），则保留占位符，或者尝试读取变量名\n        // @ts-expect-error type guard\n        const name = expr.name || `\\${${expr.type}}`\n        result += `[${name}]`\n      }\n    }\n  }\n  return result\n}\n","export const DEFINE_OPTIONS = 'defineOptions'\nexport const DEFINE_COMPONENT = 'defineComponent'\nexport const COMPONENT_PLACEHOLDER = 'componentPlaceholder'\n","import type { ObjectExpression } from '@babel/types'\nimport { serializeObjectExpression } from './common'\nimport { COMPONENT_PLACEHOLDER } from './constant'\n\nexport function hasComponentPlaceholder(node: ObjectExpression): boolean {\n  return node.properties.some(\n    prop =>\n      (prop.type === 'ObjectProperty' || prop.type === 'ObjectMethod')\n      && prop.key.type === 'Identifier'\n      && (prop.key.name === COMPONENT_PLACEHOLDER),\n  )\n}\n\nexport function getComponentPlaceholder(node: ObjectExpression) {\n  if (node?.type !== 'ObjectExpression') {\n    return\n  }\n  if (!hasComponentPlaceholder(node)) {\n    return\n  }\n\n  // 序列化 ast 为对象\n  const obj = serializeObjectExpression(node)\n  if (COMPONENT_PLACEHOLDER in obj && typeof obj[COMPONENT_PLACEHOLDER] === 'object') {\n    return obj[COMPONENT_PLACEHOLDER] as typeof obj\n  }\n}\n","import type {\n  CallExpression,\n  Node,\n  Statement,\n} from '@babel/types'\nimport { isCallOf } from 'ast-kit'\n\nexport function filterMacro(stmts: (Statement | Node)[] = [], macro: string): CallExpression[] {\n  return stmts\n    .map((raw: Node) => {\n      if (!raw)\n        return undefined\n      let node = raw\n      if (raw.type === 'ExpressionStatement')\n        node = raw.expression\n      else if (raw.type === 'ExportDefaultDeclaration')\n        node = raw.declaration\n      return isCallOf(node!, macro) ? node : undefined\n    })\n    .filter((node): node is CallExpression => !!node)\n}\n","import type { ModuleInfo } from '../../type'\nimport path from 'node:path'\nimport { moduleIdProcessor, parseQuerystring } from '..'\nimport { ROOT_DIR, UNI_INPUT_DIR, UNI_OUTPUT_DIR, UNI_SRC_DIFF_PATH } from '../../constants'\n\n/**\n * 获取 uniapp 输出目录\n * @param filePath 源码绝对路径\n * @link https://github.com/chouchouji/vite-plugin-component-placeholder/blob/4509023c4ee07c2219ec62b106de013dbd3f2a9d/src/index.ts#L8\n */\nexport function getUniappOutputPath(filePath: string) {\n  const relativeByRoot = path.relative(ROOT_DIR, filePath)\n  if (relativeByRoot.match(/^(\\.?\\/)?node_modules\\//)) {\n    const temp = path.join(UNI_SRC_DIFF_PATH, 'node-modules/')\n    filePath = path.join(ROOT_DIR, relativeByRoot.replace(/^(\\.?\\/)?node_modules\\//, temp))\n  }\n  const relativePath = path.relative(UNI_INPUT_DIR, filePath)\n  const { name, dir } = path.parse(relativePath)\n\n  return path.join(UNI_OUTPUT_DIR, dir, name)\n}\n\n/**\n * 创建一个 vue 文件的 script 函数模块解析函数\n * @example 类似于 `xxx.vue?vue&type=script&setup=true&lang.ts` 的路径\n */\nexport function createVueScriptAnalysis(inputDir = ROOT_DIR) {\n  /**\n   * # id处理器\n   * @description 将id中的moduleId转换为相对于inputDir的路径并去除查询参数后缀\n   */\n  function _moduleIdProcessor(id: string, removeQuery = true) {\n    return moduleIdProcessor(id, inputDir, removeQuery)\n  }\n\n  /**\n   * 判断模块是否是一个 vue 文件的 script 函数模块\n   * @example 类似于 `xxx.vue?vue&type=script&setup=true&lang.ts` 的路径\n   */\n  return function isVueScript(moduleInfo?: Partial<ModuleInfo> | null): moduleInfo is Partial<ModuleInfo> {\n    if (!moduleInfo?.id || !('importers' in moduleInfo) || !moduleInfo?.importers?.length) {\n      return false\n    }\n    const importer = _moduleIdProcessor(moduleInfo.importers[0])\n    const id = moduleInfo.id\n    const clearId = _moduleIdProcessor(id, false)\n\n    const parsedUrl = parseQuerystring(clearId)\n\n    return !!parsedUrl && parsedUrl.type === 'script' && parsedUrl.vue === true && importer === _moduleIdProcessor(id)\n  }\n}\n","import fs from 'node:fs'\nimport path from 'node:path'\nimport process from 'node:process'\n\ntype JsonObject = Record<string, any>\n\ninterface UniPage {\n  path: string\n  style?: JsonObject\n  [key: string]: any\n}\n\ninterface UniSubPackage {\n  root: string\n  pages?: UniPage[]\n  independent?: boolean\n  [key: string]: any\n}\n\ninterface UniPagesJson {\n  pages?: UniPage[]\n  subPackages?: UniSubPackage[]\n  subpackages?: UniSubPackage[]\n  [key: string]: any\n}\n\ninterface ParseMiniProgramPagesJsonOptions {\n  subpackages?: boolean\n}\n\ninterface MiniProgramAppJson {\n  pages: string[]\n  subPackages?: Array<Omit<UniSubPackage, 'pages'> & { pages: string[] }>\n}\n\nconst manifestJsonCache = new Map<string, JsonObject>()\n\n/**\n * 是否为普通编译目标\n * - 目前有特殊编译目标 uni_modules 和 ext-api\n */\nfunction isNormalCompileTarget() {\n  return !process.env.UNI_COMPILE_TARGET\n}\n\nexport function parseManifestJson(inputDir: string): JsonObject {\n  const filename = path.join(inputDir, 'manifest.json')\n\n  if (!fs.existsSync(filename)) {\n    // 特殊编译目标可能没有完整项目配置，缺失 manifest 时按空配置处理\n    if (!isNormalCompileTarget())\n      return {}\n\n    throw new Error(`[bundle-optimizer] manifest.json not found: ${filename}`)\n  }\n\n  // manifest.json 仅按 JSONC 解析，条件注释在这里不参与平台裁剪\n  return parseJsonLike(fs.readFileSync(filename, 'utf8'), filename)\n}\n\nexport function parseManifestJsonOnce(inputDir: string): JsonObject {\n  const cached = manifestJsonCache.get(inputDir)\n  if (cached)\n    return cached\n\n  const manifestJson = parseManifestJson(inputDir)\n  manifestJsonCache.set(inputDir, manifestJson)\n  return manifestJson\n}\n\nexport function parseMiniProgramPagesJson(\n  jsonStr: string,\n  platform: string,\n  options: ParseMiniProgramPagesJsonOptions = {},\n): { appJson: MiniProgramAppJson, pageJsons: Record<string, JsonObject>, nvuePages: string[] } {\n  // pages.json 支持条件编译，解析前需要先按平台裁剪\n  const pagesJson = parseJsonLike<UniPagesJson>(jsonStr, 'pages.json', {\n    platform,\n    preprocess: true,\n  })\n  validatePagesJson(pagesJson)\n\n  const appJson: MiniProgramAppJson = {\n    pages: pagesJson.pages!.map(page => page.path),\n  }\n\n  const subPackages = pagesJson.subPackages || pagesJson.subpackages\n  if (Array.isArray(subPackages)) {\n    if (options.subpackages) {\n      appJson.subPackages = subPackages.map(({ root, pages = [], ...rest }) => {\n        return {\n          root,\n          pages: pages.map(page => page.path),\n          ...rest,\n        }\n      })\n    }\n    else {\n      subPackages.forEach(({ root, pages = [] }) => {\n        pages.forEach((page) => {\n          appJson.pages.push(normalizePath(path.join(root, page.path)))\n        })\n      })\n    }\n  }\n\n  return {\n    appJson,\n    pageJsons: {},\n    nvuePages: [],\n  }\n}\n\nfunction validatePagesJson(pagesJson: UniPagesJson) {\n  if (!Array.isArray(pagesJson.pages))\n    throw new Error('[bundle-optimizer] pages.json->pages parse failed.')\n\n  if (!pagesJson.pages.length)\n    throw new Error('[bundle-optimizer] pages.json->pages must contain at least 1 page.')\n\n  const pages = new Set<string>()\n  for (const page of pagesJson.pages) {\n    if (!page?.path)\n      throw new Error('[bundle-optimizer] pages.json->pages item must contain path.')\n\n    if (pages.has(page.path))\n      throw new Error(`[bundle-optimizer] pages.json->${page.path} duplication.`)\n\n    pages.add(page.path)\n  }\n}\n\nfunction parseJsonLike<T = JsonObject>(\n  jsonStr: string,\n  filename: string,\n  { platform = process.env.UNI_PLATFORM, preprocess = false }: { platform?: string, preprocess?: boolean } = {},\n): T {\n  // 先去除注释，再去除尾随逗号，最后进行 JSON.parse\n  const content = stripTrailingCommas(stripJsonComments(preprocess ? preprocessConditionalJson(jsonStr, platform) : jsonStr))\n\n  try {\n    return JSON.parse(content) as T\n  }\n  catch (error) {\n    throw new Error(`[bundle-optimizer] ${filename} parse failed: ${(error as Error).message}`)\n  }\n}\n\n/**\n * json 文本平台条件编译预处理\n * - 支持条件编译指令 #if、#ifdef、#ifndef、#else、#endif\n * @param jsonStr\n * @param platform 平台标识，默认为环境变量 UNI_PLATFORM\n * @returns 预处理后的 json 文本\n * @see https://uniapp.dcloud.net.cn/tutorial/platform.html\n */\nfunction preprocessConditionalJson(jsonStr: string, platform = process.env.UNI_PLATFORM) {\n  const context = createConditionalContext(platform)\n  const stack: Array<{ parentActive: boolean, matched: boolean, active: boolean }> = []\n  const lines = jsonStr.split(/\\r?\\n/)\n\n  return lines.map((line) => {\n    const directive = parseDirective(line)\n    if (!directive)\n      return isActive(stack) ? line : ''\n\n    const parentActive = stack.length ? stack[stack.length - 1].active : true\n    const { name, expression } = directive\n\n    if (name === 'ifdef' || name === 'if') {\n      const matched = evaluateCondition(expression, context)\n      stack.push({ parentActive, matched, active: parentActive && matched })\n    }\n    else if (name === 'ifndef') {\n      const matched = !evaluateCondition(expression, context)\n      stack.push({ parentActive, matched, active: parentActive && matched })\n    }\n    else if (name === 'else') {\n      const current = stack[stack.length - 1]\n      if (current) {\n        current.active = current.parentActive && !current.matched\n        current.matched = true\n      }\n    }\n    else if (name === 'endif') {\n      stack.pop()\n    }\n\n    return ''\n  }).join('\\n')\n}\n\nfunction parseDirective(line: string) {\n  const trimmed = line.trim()\n  const content = trimmed.startsWith('//')\n    ? trimmed.slice(2).trim()\n    : trimmed.startsWith('/*') && trimmed.endsWith('*/')\n      ? trimmed.slice(2, -2).trim()\n      : ''\n\n  if (!content.startsWith('#'))\n    return\n\n  const directiveContent = content.slice(1).trim()\n  const spaceIndex = directiveContent.search(/\\s/)\n  const name = spaceIndex === -1 ? directiveContent : directiveContent.slice(0, spaceIndex)\n  const expression = spaceIndex === -1 ? '' : directiveContent.slice(spaceIndex).trim()\n\n  // uni 条件编译不识别 #elif，这里保留为普通内容处理\n  if (!['ifdef', 'ifndef', 'if', 'else', 'endif'].includes(name))\n    return\n\n  return {\n    name,\n    expression,\n  }\n}\n\nfunction isActive(stack: Array<{ active: boolean }>) {\n  return stack.every(item => item.active)\n}\n\n/**\n * 根据平台标识创建条件编译上下文\n * @param platform\n */\nfunction createConditionalContext(platform = '') {\n  const normalizedPlatform = normalizeConditionKey(platform)\n  const context = new Set<string>(['VUE3'])\n\n  if (normalizedPlatform)\n    context.add(normalizedPlatform)\n\n  if (normalizedPlatform.startsWith('MP_'))\n    context.add('MP')\n\n  if (normalizedPlatform === 'APP' || normalizedPlatform === 'APP_PLUS') {\n    context.add('APP')\n    context.add('APP_PLUS')\n  }\n\n  if (normalizedPlatform === 'APP_HARMONY') {\n    context.add('APP')\n    context.add('APP_HARMONY')\n  }\n\n  if (normalizedPlatform === 'H5' || normalizedPlatform === 'WEB') {\n    context.add('H5')\n    context.add('WEB')\n  }\n\n  if (normalizedPlatform.startsWith('QUICKAPP'))\n    context.add('QUICKAPP')\n\n  return context\n}\n\n/**\n * 评估条件表达式\n * - 支持逻辑与 &&、逻辑或 ||、逻辑非 !、括号 ()，以及平台标识符\n * @param expression 条件表达式字符串\n * @param context 条件编译上下文，包含当前平台和相关标识符\n */\nfunction evaluateCondition(expression: string, context: Set<string>) {\n  const tokens = expression.match(/[()!]|\\|\\||&&|[\\w-]+/g) || []\n  let index = 0\n\n  function peek() {\n    return tokens[index]\n  }\n\n  function consume() {\n    return tokens[index++]\n  }\n\n  function parseOr(): boolean {\n    let value = parseAnd()\n    while (peek() === '||') {\n      consume()\n      value = parseAnd() || value\n    }\n    return value\n  }\n\n  function parseAnd(): boolean {\n    let value = parseUnary()\n    while (peek() === '&&') {\n      consume()\n      value = parseUnary() && value\n    }\n    return value\n  }\n\n  function parseUnary(): boolean {\n    if (peek() === '!') {\n      consume()\n      return !parseUnary()\n    }\n\n    if (peek() === '(') {\n      consume()\n      const value = parseOr()\n      if (peek() === ')')\n        consume()\n      return value\n    }\n\n    const token = consume()\n    return token ? context.has(normalizeConditionKey(token)) : false\n  }\n\n  return parseOr()\n}\n\nfunction normalizeConditionKey(name: string) {\n  // 条件表达式里的平台名使用下划线形式进行匹配\n  return name.replace(/-/g, '_').toUpperCase()\n}\n\n/**\n * 去除 JSON 字符串中的注释\n */\nfunction stripJsonComments(source: string) {\n  let result = ''\n  let inString = false\n  let escaped = false\n\n  for (let i = 0; i < source.length; i++) {\n    const char = source[i]\n    const next = source[i + 1]\n\n    if (inString) {\n      result += char\n      if (escaped) {\n        escaped = false\n        continue\n      }\n      if (char === '\\\\') {\n        escaped = true\n        continue\n      }\n      if (char === '\"')\n        inString = false\n      continue\n    }\n\n    if (char === '\"') {\n      inString = true\n      result += char\n      continue\n    }\n\n    if (char === '/' && next === '/') {\n      while (i < source.length && source[i] !== '\\n')\n        i++\n      result += '\\n'\n      continue\n    }\n\n    if (char === '/' && next === '*') {\n      i += 2\n      while (i < source.length && !(source[i] === '*' && source[i + 1] === '/')) {\n        result += source[i] === '\\n' ? '\\n' : ' '\n        i++\n      }\n      i++\n      continue\n    }\n\n    result += char\n  }\n\n  return result\n}\n\n/**\n * 去除 JSON 字符串中的尾随逗号\n * @description jsonc 允许对象和数组中存在尾随逗号，但 JSON.parse 不支持，因此需要预处理去除\n */\nfunction stripTrailingCommas(source: string) {\n  let result = ''\n  let inString = false\n  let escaped = false\n\n  for (let i = 0; i < source.length; i++) {\n    const char = source[i]\n\n    if (inString) {\n      result += char\n      if (escaped) {\n        escaped = false\n        continue\n      }\n      if (char === '\\\\') {\n        escaped = true\n        continue\n      }\n      if (char === '\"')\n        inString = false\n      continue\n    }\n\n    if (char === '\"') {\n      inString = true\n      result += char\n      continue\n    }\n\n    if (char === ',') {\n      let nextIndex = i + 1\n      while (/\\s/.test(source[nextIndex] || ''))\n        nextIndex++\n\n      if (source[nextIndex] === '}' || source[nextIndex] === ']')\n        continue\n    }\n\n    result += char\n  }\n\n  return result\n}\n\nfunction normalizePath(filePath: string) {\n  return filePath.replace(/\\\\/g, '/')\n}\n","import { Buffer } from 'node:buffer'\n\nexport default function padString(input: string): string {\n  const segmentLength = 4\n  const stringLength = input.length\n  const diff = stringLength % segmentLength\n\n  if (!diff) {\n    return input\n  }\n\n  let position = stringLength\n  let padLength = segmentLength - diff\n  const paddedStringLength = stringLength + padLength\n  const buffer = Buffer.alloc(paddedStringLength)\n\n  buffer.write(input)\n\n  while (padLength--) {\n    buffer.write('=', position++)\n  }\n\n  return buffer.toString()\n}\n","import { Buffer } from 'node:buffer'\nimport padString from './pad-string'\n\nfunction encode(input: string | Buffer, encoding: BufferEncoding = 'utf8'): string {\n  if (Buffer.isBuffer(input)) {\n    return fromBase64(input.toString('base64'))\n  }\n  return fromBase64(Buffer.from(input, encoding).toString('base64'))\n}\n\nfunction decode(base64url: string, encoding: BufferEncoding = 'utf8'): string {\n  return Buffer.from(toBase64(base64url), 'base64').toString(encoding)\n}\n\nfunction toBase64(base64url: string | Buffer): string {\n  // We this to be a string so we can do .replace on it. If it's\n  // already a string, this is a noop.\n  base64url = base64url.toString()\n  return padString(base64url)\n    .replace(/-/g, '+')\n    .replace(/_/g, '/')\n}\n\nfunction fromBase64(base64: string): string {\n  return base64\n    .replace(/=/g, '')\n    .replace(/\\+/g, '-')\n    .replace(/\\//g, '_')\n}\n\nfunction toBuffer(base64url: string): Buffer {\n  return Buffer.from(toBase64(base64url), 'base64')\n}\n\nexport interface Base64Url {\n  (input: string | Buffer, encoding?: BufferEncoding): string\n  encode: (input: string | Buffer, encoding?: BufferEncoding) => string\n  decode: (base64url: string, encoding?: BufferEncoding) => string\n  toBase64: (base64url: string | Buffer) => string\n  fromBase64: (base64: string) => string\n  toBuffer: (base64url: string) => Buffer\n}\n\n/**\n * @link https://github.com/brianloveswords/base64url\n */\nconst base64url = encode as Base64Url\n\nbase64url.encode = encode\nbase64url.decode = decode\nbase64url.toBase64 = toBase64\nbase64url.fromBase64 = fromBase64\nbase64url.toBuffer = toBuffer\n\nexport default base64url\n","import type { OutputChunk } from '../../type'\nimport path from 'node:path'\nimport { UNI_INPUT_DIR, UNI_OUTPUT_DIR } from '../../constants'\nimport base64url from '../base64url'\nimport { getUniappOutputPath } from './common'\n\nexport const uniPagePrefix = 'uniPage://' as const\nexport const uniComponentPrefix = 'uniComponent://' as const\n\nexport function virtualPagePath(filepath: string): `${typeof uniPagePrefix}${string}` {\n  return `${uniPagePrefix}${base64url.encode(filepath)}`\n}\n\nexport function virtualComponentPath(filepath: string): `${typeof uniComponentPrefix}${string}` {\n  return `${uniComponentPrefix}${base64url.encode(filepath)}`\n}\n\nexport function parseVirtualPagePath(uniPageUrl: string) {\n  return base64url.decode(uniPageUrl.replace(uniPagePrefix, ''))\n}\n\nexport function parseVirtualComponentPath(uniComponentUrl: string) {\n  return base64url.decode(uniComponentUrl.replace(uniComponentPrefix, ''))\n}\n\nexport function isUniVirtualPagePath(path: string): path is `${typeof uniPagePrefix}${string}` {\n  return path.startsWith(uniPagePrefix)\n}\n\nexport function isUniVirtualComponentPath(path: string): path is `${typeof uniComponentPrefix}${string}` {\n  return path.startsWith(uniComponentPrefix)\n}\n\nexport function isUniVirtualPath(path: string): path is `${typeof uniPagePrefix}${string}` | `${typeof uniComponentPrefix}${string}` {\n  return isUniVirtualPagePath(path) || isUniVirtualComponentPath(path)\n}\n\n// Old: [boolean, string, 'page' | 'component' | null]\ntype ParseResult\n  = | [true, string, 'page' | 'component']\n    | [false, string, null]\n\nexport function parseVirtualPath<T extends string>(virtualUrl?: T | null): ParseResult {\n  if (virtualUrl?.startsWith(uniPagePrefix)) {\n    return [true, parseVirtualPagePath(virtualUrl), 'page']\n  }\n  if (virtualUrl?.startsWith(uniComponentPrefix)) {\n    return [true, parseVirtualComponentPath(virtualUrl), 'component']\n  }\n  return [false, virtualUrl ?? '', null]\n}\n\nexport function checkUniComponentByChunk(chunk?: OutputChunk) {\n  if (!chunk || chunk.type !== 'chunk' || !chunk.facadeModuleId) {\n    return\n  }\n  // 如果是虚拟组件这里将会符合虚拟组件的特征\n  const facadeModuleId = chunk.facadeModuleId\n  let [is, maybePath, type] = parseVirtualPath(facadeModuleId)\n  if (!is) {\n    return\n  }\n  if (!path.isAbsolute(maybePath)) {\n    maybePath = path.join(UNI_INPUT_DIR, maybePath)\n  }\n  // 获得拟输出路径，无后缀\n  const outputPath = getUniappOutputPath(maybePath)\n\n  // 构建产物相对于构建根目录的文件路径名称\n  const fileName = chunk.fileName\n  const { name, dir, ext } = path.parse(fileName)\n  const todo = path.join(UNI_OUTPUT_DIR, dir, name)\n  if (todo !== outputPath) {\n    return\n  }\n  // 进一步判断是否是虚拟组件，虚拟组件\n  const moduleIds = chunk.moduleIds\n  if (moduleIds.includes(facadeModuleId) && moduleIds.some(item => (item.split('?')[0] === maybePath))) {\n    return { type, output: [todo, ext].filter(Boolean).join('.'), input: maybePath }\n  }\n}\n","import type { Alias, UserConfig } from 'vite'\nimport path from 'node:path'\nimport { isRegExp } from 'node:util/types'\nimport { normalizePath } from '..'\n\n/**\n * @link https://github.com/rollup/plugins/blob/c3dcdc0d2eda4db74bdc772bc369f3f9325802bf/packages/alias/src/index.ts#L7\n */\nfunction matches(pattern: string | RegExp, source: string) {\n  if (pattern instanceof RegExp) {\n    return pattern.test(source)\n  }\n  if (source.length < pattern.length) {\n    return false\n  }\n  if (source === pattern) {\n    return true\n  }\n  return source.startsWith(pattern.endsWith('/') ? pattern : (`${pattern}/`))\n}\n\n/**\n * 创建一个基于 vite 配置的路径解析函数\n * @param config vite 配置\n * @returns 路径解析函数\n */\nexport function createVitePathResolver(config: UserConfig) {\n  const normalize = (str: any) => {\n    if (typeof str === 'string' && !isRegExp(str) && !str.includes('*')) {\n      str = normalizePath(str)\n    }\n    return str\n  }\n\n  const tempAlias = config.resolve?.alias ?? []\n  let alias: Alias[] = []\n  if (!Array.isArray(tempAlias)) {\n    alias = Object.entries(tempAlias as { [find: string]: string }).map(([find, replacement]) => ({ find, replacement }))\n  }\n  else {\n    alias = tempAlias\n  }\n\n  return (source: string, relative = false) => {\n    const matchedEntry = alias.find(entry => matches(entry.find, source))\n    if (!matchedEntry) {\n      return source\n    }\n    const normalizeReplacement = normalize(matchedEntry.replacement)\n\n    if (isRegExp(matchedEntry.find)) {\n      const realPath = source.replace(matchedEntry.find, normalizeReplacement)\n      return relative ? realPath : path.resolve(realPath)\n    }\n\n    // 避开 glob 特征的字符串\n    if (!matchedEntry.find.includes('*') && !normalizeReplacement.includes('*')) {\n      // 断定为全量匹配\n      if (source === matchedEntry.find) {\n        return relative ? normalizeReplacement : path.resolve(normalizeReplacement)\n      }\n      // 断定为前缀匹配\n      if (source.startsWith(matchedEntry.find)) {\n        const subPath = source.substring(matchedEntry.find.length) // 获取去除前缀的子串\n        const realPath = path.join(normalizeReplacement, subPath) // join 自动处理路径拼接问题\n        return relative ? realPath : path.resolve(realPath)\n      }\n    }\n    return source\n  }\n}\n\n/** vite插件相关的路径解析 | 单例模式 */\nlet vitePathResolver: ((source: string, relative?: boolean) => string) | null = null\n\nexport function getVitePathResolver() {\n  if (!vitePathResolver) {\n    throw new Error('Vite path resolver has not been initialized. Please call createVitePathResolver first.')\n  }\n  return vitePathResolver\n}\n\nexport function initializeVitePathResolver(config: UserConfig) {\n  vitePathResolver = createVitePathResolver(config)\n}\n","// Borrowed from https://github.com/vue-macros/vue-macros/blob/89cb6b2f44bb6b1d5428d6893666fbcff0fa5326/packages/common/src/vue.ts#L27\nimport type { Program } from '@babel/types'\nimport type { SFCDescriptor, SFCParseResult, SFCScriptBlock as SFCScriptBlockMixed } from '@vue/compiler-sfc'\nimport { parse } from '@vue/compiler-sfc'\nimport { babelParse } from 'ast-kit'\n\nexport type SFCScriptBlock = Omit<\n  SFCScriptBlockMixed,\n    'scriptAst' | 'scriptSetupAst'\n>\n\nexport type SFC = Omit<SFCDescriptor, 'script' | 'scriptSetup'> & {\n  sfc: SFCParseResult\n  script?: SFCScriptBlock | null\n  scriptSetup?: SFCScriptBlock | null\n  lang: string | undefined\n  getScriptAst: () => Program | undefined\n  getSetupAst: () => Program | undefined\n  offset: number\n} & Pick<SFCParseResult, 'errors'>\n\nexport function parseSFC(code: string, id: string): SFC {\n  const sfc = parse(code, {\n    filename: id,\n  })\n  const { descriptor, errors } = sfc\n\n  const scriptLang = sfc.descriptor.script?.lang\n  const scriptSetupLang = sfc.descriptor.scriptSetup?.lang\n\n  if (\n    sfc.descriptor.script\n    && sfc.descriptor.scriptSetup\n    && (scriptLang || 'js') !== (scriptSetupLang || 'js')\n  ) {\n    throw new Error(\n      `[vue-macros] <script> and <script setup> must have the same language type.`,\n    )\n  }\n\n  const lang = scriptLang || scriptSetupLang\n\n  return Object.assign({}, descriptor, {\n    sfc,\n    lang,\n    errors,\n    offset: descriptor.scriptSetup?.loc.start.offset ?? 0,\n    getSetupAst() {\n      if (!descriptor.scriptSetup)\n        return\n      return babelParse(descriptor.scriptSetup.content, lang, {\n        plugins: [['importAttributes', { deprecatedAssertSyntax: true }]],\n        cache: true,\n      })\n    },\n    getScriptAst() {\n      if (!descriptor.script)\n        return\n      return babelParse(descriptor.script.content, lang, {\n        plugins: [['importAttributes', { deprecatedAssertSyntax: true }]],\n        cache: true,\n      })\n    },\n  } satisfies Partial<SFC>)\n}\n","import fs from 'node:fs'\nimport path from 'node:path'\nimport process from 'node:process'\nimport { ASSETS_DIR_RE, EXT_RE, ROOT_DIR, SRC_DIR_RE } from '../constants'\nimport * as querystring from './query-string'\n\n/** 替换字符串指定位置的字符 */\nexport function replaceStringAtPosition(originalStr: string, start: number, end: number, replaceWith: string) {\n  return originalStr.substring(0, start) + replaceWith + originalStr.substring(end)\n}\n\n/** 转换为斜杠路径 */\nexport function slash(p: string): string {\n  return p.replace(/\\\\/g, '/')\n}\n\n/** 规范路径 ｜ 处理路径斜杠 */\nexport function normalizePath(id: string) {\n  return process.platform === 'win32' ? slash(id) : id\n}\n\n/** 规范函数语法 */\nexport function normalizeFunctionSyntax(funcStr: string, anonymous = false): string {\n  return funcStr.replace(/^\\s*(async\\s+)?(function\\s+)?([\\w$]+)\\s*\\(/, (match, asyncKeyword, funcKeyword, funcName) => {\n    return !anonymous && funcName && !['function', 'async'].includes(funcName)\n      ? `${asyncKeyword || ''}function ${funcName}(`\n      : `${asyncKeyword || ''}${funcName === 'async' ? padEndStringSpaces(funcName, 1) : 'function'}(`\n  })\n}\n\n/**\n * 字符串末尾填充空格\n * @param str 待处理字符串\n * @param count 填充数量 ｜ 默认 0\n * @returns 处理后的字符串 ｜ 兜底处理成空字符串\n */\nexport function padEndStringSpaces(str: string | undefined, count = 0) {\n  str = str?.toString()\n  return str?.padEnd(str?.length + count) || ''\n}\n\n/** 检查并创建目录 */\nexport function ensureDirectoryExists(filePath: string) {\n  const dir = path.dirname(filePath)\n  if (!fs.existsSync(dir)) {\n    fs.mkdirSync(dir, { recursive: true })\n  }\n}\n\n/** 路径处理器 | 去除`rootDir`前缀路径和查询参数 | `rootDir`默认为项目根目录 */\nexport function moduleIdProcessor(id: string, rootDir = ROOT_DIR, removeQuery = true) {\n  rootDir = normalizePath(rootDir)\n  // 确保 rootDir 以斜杠结尾\n  if (!rootDir.endsWith('/'))\n    rootDir += '/'\n\n  const normalized = normalizePath(id)\n  const name = removeQuery ? normalized.split('?')[0] : normalized\n  // 从name中剔除 rootDir 前缀\n  const updatedName = name.replace(rootDir, '')\n\n  // 去除来自`node_modules`模块的前缀\n  if (updatedName.startsWith('\\x00'))\n    return updatedName.slice(1)\n\n  return updatedName\n}\n\n/**\n * 获取两个字符串的“差”\n */\nexport function diffStrings(strA: string, strB: string) {\n  const lenA = strA.length\n  const lenB = strB.length\n\n  // 寻找公共前缀长度 (Prefix Length)\n  let p = 0\n  while (p < lenA && p < lenB && strA[p] === strB[p]) {\n    p++\n  }\n\n  // 寻找公共后缀长度 (Suffix Length)\n  // 注意：后缀扫描不能越过前缀的位置，避免重叠\n  let s = 0\n  while (\n    s < lenA - p\n    && s < lenB - p\n    && strA[lenA - 1 - s] === strB[lenB - 1 - s]\n  ) {\n    s++\n  }\n\n  return {\n    /** 公共前缀 */\n    prefix: strA.slice(0, p),\n    /** 公共后缀 */\n    suffix: strA.slice(lenA - s),\n    /** A 去掉前后公共部分后的剩余 */\n    diffA: strA.slice(p, lenA - s),\n    /** B 去掉前后公共部分后的剩余 */\n    diffB: strB.slice(p, lenB - s),\n    // -- 差异是在哪里开始的 --\n    start: p,\n    endA: lenA - s,\n    endB: lenB - s,\n  }\n}\n\n/**\n * 计算相对路径的调用层级\n * @param importer 引入者文件的路径\n * @param imported 被引入文件的路径\n * @returns 相对路径前缀\n */\nexport function calculateRelativePath(importer: string, imported: string): string {\n  // 获取相对路径\n  if (imported.match(/^(\\.\\/|\\.\\.\\/)+/)) {\n    imported = path.resolve(path.dirname(importer), imported)\n  }\n  const relativePath = path.relative(path.dirname(importer), imported)\n\n  // 将路径中的反斜杠替换为正斜杠（适用于 Windows 系统）\n  return relativePath.replace(/\\\\/g, '/')\n}\n\n/** 处理 src 前缀的路径 */\nexport function resolveSrcPath(id: string) {\n  return id.replace(SRC_DIR_RE, './')\n}\n\n/** 处理 assets 前缀的路径 */\nexport function resolveAssetsPath(id: string) {\n  return id.replace(ASSETS_DIR_RE, './')\n}\n\n/** 判断是否有后缀 */\nexport function hasExtension(id: string) {\n  return EXT_RE.test(id)\n}\n\n/** 短横线命名法 */\nexport function kebabCase(key: string) {\n  if (!key)\n    return key\n\n  const result = key.replace(/([A-Z])/g, ' $1').trim()\n  return result.split(' ').join('-').toLowerCase()\n}\n\n/** 查找第一个不连续的数字 */\nexport function findFirstNonConsecutive(arr: number[]): number | null {\n  if (arr.length < 2)\n    return null // 如果数组长度小于2，直接返回null\n\n  const result = arr.find((value, index) => index > 0 && value !== arr[index - 1] + 1)\n  return result !== undefined ? result : null\n}\n\n/** 查找第一个不连续的数字之前的数字 */\nexport function findFirstNonConsecutiveBefore(arr: number[]): number | null {\n  if (arr.length < 2)\n    return null // 如果数组长度小于2，直接返回null\n\n  const result = arr.find((value, index) => index > 0 && value !== arr[index - 1] + 1)\n  return (result !== undefined && result !== null) ? arr[arr.indexOf(result) - 1] : null\n}\n\n/** 明确的 bool 型做取反，空值原样返回 */\nexport function toggleBoolean(value: boolean | undefined | null) {\n  return typeof value === 'boolean' ? !value : value\n}\n\n/**\n * 解析 URL 查询字符串\n * @param url 待解析的 URL 字符串（必须包含 `?`）\n * @returns 解析后的查询参数对象\n */\nexport function parseQuerystring(url?: any) {\n  if (!url || typeof url !== 'string') {\n    return null\n  }\n\n  const rmExtUrl = url.replace(EXT_RE, '')\n  const queryStr = rmExtUrl.split('?')[1] || ''\n  // 此处表明函数入参的字符串必须包含 '?'\n  if (!queryStr) {\n    return null\n  }\n\n  try {\n    return Object.entries(querystring.parse(queryStr))\n      .reduce((acc, [key, value]) => {\n        acc[key] = value === null || value === 'true' ? true : value === 'false' ? false : value\n        return acc\n      }, {} as Record<string, string | boolean | (string | boolean | null)[]>)\n  }\n  catch (error) {\n    console.error('Error parsing query string:', error)\n    return null\n  }\n}\n\nexport * from './ast'\nexport * from './lex-parse'\nexport * from './regexp'\nexport * from './uniapp'\nexport * from './vite'\nexport * from './vue'\n","import type { Plugin } from 'vite'\nimport fs from 'node:fs'\nimport process from 'node:process'\nimport { logger } from '../common/Logger'\nimport {\n  COMPONENT_PLACEHOLDER,\n  DEFINE_COMPONENT,\n  DEFINE_OPTIONS,\n  filterMacro,\n  getComponentPlaceholder,\n  getDefaultExports,\n  getUniappOutputPath,\n  kebabCase,\n  parseSFC,\n} from '../utils'\n\n/**\n * ### 小程序端跨包组件异步引用支持\n * 扫描 vue 组件的 defineOptions 或者默导出的 `componentPlaceholder` 关键词配置\n * @description 将会在组件/页面的 json 文件中注入 `componentPlaceholder` 配置\n * @see https://github.com/uni-ku/bundle-optimizer/issues/26#issuecomment-3611984928\n */\nexport function AsyncComponentProcessor(enableLogger: boolean): Plugin {\n  const platform = process.env.UNI_PLATFORM\n  const isMP = platform?.startsWith('mp-')\n\n  const asyncComponents = new Map<string, Record<string, unknown>>()\n  logger.info('[async-component] 异步组件处理器已启用', !enableLogger)\n\n  return {\n    name: 'async-component-processor',\n    enforce: 'pre',\n    async transform(source, id) {\n      if (!isMP || !id.endsWith('.vue') || !source.includes(COMPONENT_PLACEHOLDER)) {\n        return\n      }\n      const sfc = parseSFC(source, id)\n      if (!sfc.scriptSetup && !sfc.script)\n        return\n\n      const { getSetupAst, getScriptAst } = sfc\n\n      const collectPlaceholder = (node?: any) => {\n        let obj: Record<string, unknown> | undefined\n        // eslint-disable-next-line no-cond-assign\n        if (node?.type === 'ObjectExpression' && (obj = getComponentPlaceholder(node))) {\n          const res: any = {}\n          Object.entries(obj).forEach(([key, val]) => {\n            // todo: 小程序端需要 kebab-case 风格的组件名称\n            res[kebabCase(key.toString())] = kebabCase((val ?? 'view').toString())\n          })\n          const path = getUniappOutputPath(id)\n          let oObj: Record<string, unknown> = {}\n          if (asyncComponents.has(path)) {\n            oObj = asyncComponents.get(path)!\n          }\n          asyncComponents.set(path, { ...oObj, ...res })\n        }\n      }\n\n      const setupAst = getSetupAst()\n      const scriptAst = getScriptAst()\n      // 这里是在检测 vue 文件是否有默认导出的 script 域，旨在这种写法不和 defineOptions 写法共存\n      // 详见 unplugin-vue-define-options 的实现\n      // 这里不做这么严格的检测，而是做合并配置，defineOptions 下的配置优先级更高\n      // if (setupAst && scriptAst)\n      //   checkDefaultExport(scriptAst.body)\n\n      if (scriptAst) {\n        // 有些是使用 defineComponent 声明的\n        const macroNodes = filterMacro(scriptAst.body, DEFINE_COMPONENT)\n        collectPlaceholder(macroNodes?.[0]?.arguments?.[0])\n        const [defaultExport] = getDefaultExports(scriptAst)\n        collectPlaceholder(defaultExport?.declaration)\n      }\n      if (setupAst) {\n        const macroNodes = filterMacro(setupAst.body, DEFINE_OPTIONS)\n        if (macroNodes.length > 1) { // 多个 defineOptions 宏是不允许的\n          throw new SyntaxError(`duplicate ${DEFINE_OPTIONS}() call`)\n        }\n        collectPlaceholder(macroNodes?.[0]?.arguments?.[0])\n      }\n    },\n    // 直接修改\n    closeBundle() {\n      if (asyncComponents.size === 0)\n        return\n\n      for (const [outputPath, config] of asyncComponents) {\n        const jsonPath = `${outputPath}.json`\n        if (!fs.existsSync(jsonPath)) {\n          continue\n        }\n        const content = fs.readFileSync(jsonPath, 'utf-8')\n        const json = JSON.parse(content)\n        json.componentPlaceholder = config\n        fs.writeFileSync(jsonPath, JSON.stringify(json, null, 2))\n      }\n    },\n  }\n}\n\nexport default AsyncComponentProcessor\n","/* eslint-disable unused-imports/no-unused-vars */\nimport type { Plugin } from 'vite'\nimport process from 'node:process'\nimport { MagicString } from '@vue/compiler-sfc'\nimport { babelParse } from 'ast-kit'\nimport { logger } from '../common/Logger'\nimport {\n  getDynamicImports,\n  isUniVirtualPath,\n  parseVirtualPath,\n} from '../utils'\n\n/**\n * ### 异步引用语法多端支持\n * @description 让多端支持 esm 异步引用语法 `import()`\n * @platform h5 -> import()\n * @platform mp -> require.async()\n * @platform app -> app端的编译格式是iife，无法使用`import()`语法，本插件将全量屏蔽`import()`行为\n */\nexport function AsyncImportProcessor(enableLogger: boolean): Plugin {\n  const platform = process.env.UNI_PLATFORM\n  /** 是否小程序 */\n  const isMP = platform?.startsWith('mp')\n  /** 是否H5 */\n  const isH5 = platform === 'h5'\n  /**\n   * 是否为app\n   * @description 鸿蒙平台下会输出 `app-harmony`；android、ios 均输出 `app`\n   */\n  const isApp = platform?.startsWith('app')\n\n  logger.info('[async-import] 异步导入处理器已启用', !enableLogger)\n\n  const resolvedByWhitelist = {\n    /**\n     * app 端部分来源的动态引用是允许的\n     */\n    app: ['uni:app-nvue-app-style'],\n  }\n\n  return {\n    name: 'async-import-processor',\n    enforce: 'post', // 插件执行时机，在其他处理后执行\n    async transform(code, id, options) {\n      if (!code.includes('import(') || (!isMP && !isApp))\n        return\n\n      const platform = isMP ? '小程序' : 'APP'\n\n      try {\n        const ast = babelParse(code, 'js', {\n          plugins: [['importAttributes', { deprecatedAssertSyntax: true }]],\n          cache: true,\n        })\n        const dynamicImports = getDynamicImports(ast)\n          .filter(i => typeof i.path === 'string' && !isUniVirtualPath(i.path))\n\n        // 初始化 MagicString\n        const s = new MagicString(code)\n        let hasChanged = false\n\n        // TODO: 小程序端，将业务中所有对组件文件的异步引用都屏蔽，虚拟路径除外\n        // TODO: app端，将业务中所有的异步引用都屏蔽，虚拟路径除外\n        for (const dynamicImport of dynamicImports) {\n          logger.info(`[async-import] dynamicImport: ${JSON.stringify(dynamicImport, null, 2)}`, true)\n          if (typeof dynamicImport.path !== 'string' || !dynamicImport.node.start || !dynamicImport.node.end) {\n            continue\n          }\n          const resolved = await this.resolve(dynamicImport.path, id)\n          if (!resolved) {\n            continue\n          }\n          if (isApp ? resolvedByWhitelist.app.includes(resolved.resolvedBy) : !resolved.id.endsWith('.vue')) {\n            continue\n          }\n          const { start, end } = dynamicImport.node\n          // 将 import(...) 替换为无副作用的占位符\n          // 替换为 Promise 占位符，防止业务代码 await 报错\n          s.overwrite(start, end, 'Promise.resolve({})')\n          hasChanged = true\n          logger.warn(`[async-import] 检测到 ${platform} 环境中存在非法的动态 import() 将禁止：${dynamicImport.path}`, false)\n        }\n        if (hasChanged) {\n          return {\n            code: s.toString(),\n            map: s.generateMap({ hires: true }),\n          }\n        }\n      }\n      catch (e) { /** ignore */ }\n    },\n    renderDynamicImport(options) {\n      const targetModuleId = options.targetModuleId\n      if (!isMP || !targetModuleId)\n        return\n\n      // 避免对 uni 虚拟组件异步引用的干预\n      if (isUniVirtualPath(targetModuleId))\n        return\n\n      const moduleInfo = this.getModuleInfo(targetModuleId)\n      for (const importer of moduleInfo?.importers ?? []) {\n        const [is, maybePath, type] = parseVirtualPath(importer)\n        // 这里说明业务中存在对一个 vue 组件的异步 import 的行为\n        // ! 这是不允许的，此处略过，不干预\n        if (is && targetModuleId === maybePath) {\n          return\n        }\n      }\n\n      return {\n        left: 'require.async(',\n        right: ')',\n      }\n    },\n  }\n}\n\nexport default AsyncImportProcessor\n","/* eslint-disable no-console */\n/* eslint-disable unused-imports/no-unused-vars */\n/* eslint-disable node/prefer-global/process */\nimport type { Plugin } from 'vite'\nimport type { ISubPkgsInfo, ManualChunkMeta, ManualChunksOption, ModuleInfo, OptimizationOptions } from '../type'\nimport fs from 'node:fs'\nimport path from 'node:path'\nimport { logger } from '../common/Logger'\nimport { EXT_RE, EXTNAME_JS_RE, ROOT_DIR, UNI_INPUT_DIR } from '../constants'\nimport { moduleIdProcessor as _moduleIdProcessor, normalizePath, parseQuerystring, parseVirtualPath } from '../utils'\nimport { parseManifestJsonOnce, parseMiniProgramPagesJson } from '../utils/uniapp'\n\n/**\n * ### uniapp 分包优化插件\n */\nexport function SubPackagesOptimization(enableLogger: boolean, options: Required<OptimizationOptions>): Plugin {\n  const platform = process.env.UNI_PLATFORM\n  const inputDir = UNI_INPUT_DIR\n  const { normalizeVueEntityModule } = options\n\n  if (!platform || !inputDir) {\n    throw new Error('`UNI_INPUT_DIR` or `UNI_PLATFORM` is not defined')\n  }\n\n  // #region 分包优化参数获取\n  const manifestJson = parseManifestJsonOnce(inputDir)\n  const platformOptions = manifestJson[platform] || {}\n  const platformOptimization = platformOptions.optimization || {}\n  process.env.UNI_OPT_TRACE = `${!!platformOptimization.subPackages}`\n\n  const pagesJsonPath = path.resolve(inputDir, 'pages.json')\n  const jsonStr = fs.readFileSync(pagesJsonPath, 'utf8')\n  const { appJson } = parseMiniProgramPagesJson(jsonStr, platform, { subpackages: true })\n\n  const pagesFlat = {\n    pages: appJson.pages || [],\n    subPackages: (appJson.subPackages || []).flatMap((pkg) => {\n      return pkg.pages.map(page => `${pkg.root}/${page}`.replace(/\\/{2,}/g, '/'))\n    }),\n    get all() {\n      return [...this.pages, ...this.subPackages]\n    },\n  }\n\n  logger.info(`pagesFlat: ${JSON.stringify(pagesFlat, null, 2)}`, true)\n\n  process.UNI_SUBPACKAGES = appJson.subPackages || {}\n  // #endregion\n\n  // #region subpackage\n  const UNI_SUBPACKAGES = process.UNI_SUBPACKAGES || {}\n  const subPkgsInfo: ISubPkgsInfo[] = Object.values(UNI_SUBPACKAGES)\n  const normalFilter = ({ independent }: ISubPkgsInfo) => !independent\n  const independentFilter = ({ independent }: ISubPkgsInfo) => independent\n  /** 先去除尾部的`/`，再添加`/`，兼容pages.json中以`/`结尾的路径 */\n  const map2Root = ({ root }: ISubPkgsInfo) => `${root.replace(/\\/$/, '')}/`\n  const subPackageRoots = subPkgsInfo.map(map2Root)\n  const normalSubPackageRoots = subPkgsInfo.filter(normalFilter).map(map2Root)\n  const independentSubpackageRoots = subPkgsInfo.filter(independentFilter).map(map2Root)\n\n  /**\n   * # id处理器\n   * @description 将 moduleId 转换为相对于 inputDir 的路径并去除查询参数后缀\n   */\n  function moduleIdProcessor(id: string, removeQuery = true) {\n    return _moduleIdProcessor(id, UNI_INPUT_DIR, removeQuery)\n  }\n  /**\n   * # id处理器\n   * @description 将 moduleId 转换为相对于 rootDir 的路径并去除查询参数后缀\n   */\n  function moduleIdProcessorForRoot(id: string, removeQuery = true) {\n    return _moduleIdProcessor(id, undefined, removeQuery)\n  }\n\n  /**\n   * 判断该文件模块的来源\n   */\n  const moduleFrom = (id: string):\n    { from: 'main' | 'node_modules', clearId: string }\n    | { from: 'sub', clearId: string, pkgRoot: string }\n    | undefined => {\n    let root = normalizePath(ROOT_DIR)\n    if (!root.endsWith('/'))\n      root = `${root}/`\n\n    const clearId = moduleIdProcessor(id)\n\n    if (!path.isAbsolute(clearId)) {\n      const pkgRoot = normalSubPackageRoots.find(root => moduleIdProcessor(clearId).indexOf(root) === 0)\n      if (pkgRoot === undefined)\n        return { from: clearId.startsWith('node_modules/') ? 'node_modules' : 'main', clearId }\n      else\n        return { from: 'sub', clearId, pkgRoot }\n    }\n    else {\n      // clearId.startsWith(root) && TODO: 放宽条件，兼容 workspace 项目\n      if (clearId.includes('/node_modules/'))\n        return { from: 'node_modules', clearId }\n    }\n  }\n\n  /** 查找模块列表中是否有属于子包的模块 */\n  const findSubPackages = function (importers: readonly string[]) {\n    return importers.reduce((pkgs, item) => {\n      const pkgRoot = normalSubPackageRoots.find(root => moduleIdProcessor(item).indexOf(root) === 0)\n      pkgRoot && pkgs.add(pkgRoot)\n      return pkgs\n    }, new Set<string>())\n  }\n\n  /** 判断是否有非子包的import (是否被非子包引用) */\n  const hasNoSubPackage = function (importers: readonly string[]) {\n    return importers.some((item) => {\n      // 遍历所有的子包根路径，如果模块的路径不包含子包路径，就说明被非子包引用了\n      return !subPackageRoots.some(root => moduleIdProcessor(item).indexOf(root) === 0)\n    })\n  }\n  /** 查找来自 主包 下的依赖 */\n  const findMainPackage = function (importers: readonly string[]) {\n    const list = importers.filter((item) => {\n      const id = moduleIdProcessor(item)\n      // 排除掉子包和第三方包之后，剩余的视为主包\n      return !subPackageRoots.some(root => id.indexOf(root) === 0) && !id.includes('node_modules')\n    })\n    return list\n  }\n  /** 查找`node_modules`下的三方依赖 */\n  const findNodeModules = function (importers: readonly string[]) {\n    const mainPackageList = findMainPackage(importers)\n    return importers.filter((item) => {\n      const id = moduleIdProcessor(item)\n      // 排除主包和子包，并且包含“node_modules”\n      return !mainPackageList.includes(item) && !subPackageRoots.some(root => id.indexOf(root) === 0) && id.includes('node_modules')\n    })\n  }\n  /** 查找三方依赖的组件库 */\n  const findNodeModulesComponent = function (importers: readonly string[]) {\n    const list = findNodeModules(importers)\n    const nodeModulesComponent = new Set(list\n      .map(item => moduleIdProcessor(item))\n      .filter(name => name.endsWith('.vue') || name.endsWith('.nvue')))\n    return nodeModulesComponent\n  }\n\n  /** 查找来自 主包 下的组件 */\n  const findMainPackageComponent = function (importers: readonly string[]) {\n    const list = findMainPackage(importers)\n    const mainPackageComponent = new Set(list\n      .map(item => moduleIdProcessor(item))\n      .filter(name => name.endsWith('.vue') || name.endsWith('.nvue')))\n    return mainPackageComponent\n  }\n  /** 判断是否含有项目入口文件的依赖 */\n  const hasEntryFile = function (importers: readonly string[], meta: ManualChunkMeta) {\n    const list = findMainPackage(importers)\n    return list.some(item => meta.getModuleInfo(item)?.isEntry)\n  }\n  /** 判断该模块引用的模块是否有跨包引用的组件 */\n  const hasMainPackageComponent = function (moduleInfo: Partial<ModuleInfo>, subPackageRoot?: string) {\n    if (moduleInfo.id && moduleInfo.importedIdResolutions) {\n      for (let index = 0; index < moduleInfo.importedIdResolutions.length; index++) {\n        const m = moduleInfo.importedIdResolutions[index]\n\n        if (m && m.id) {\n          const name = moduleIdProcessor(m.id)\n          // 判断是否为组件\n          if (name.includes('.vue') || name.includes('.nvue')) {\n            // 判断存在跨包引用的情况(该组件的引用路径不包含子包路径，就说明跨包引用了)\n            if (subPackageRoot && !name.includes(subPackageRoot)) {\n              if (process.env.UNI_OPT_TRACE) {\n                console.log('move module to main chunk:', moduleInfo.id, 'from', subPackageRoot, 'for component in main package:', name)\n              }\n\n              // 独立分包除外\n              const independentRoot = independentSubpackageRoots.find(root => name.includes(root))\n              if (!independentRoot) {\n                return true\n              }\n            }\n          }\n          else {\n            return hasMainPackageComponent(m, subPackageRoot)\n          }\n        }\n      }\n    }\n    return false\n  }\n\n  /**\n   * 判断模块是否是一个 vue 文件的 script 函数模块\n   * @deprecated 弃用，使用 isVueEntity：一旦 vue 实体文件确定编译去向之后，其关联的 css\\js 会自动跟随\n   */\n  const isVueScript = (moduleInfo: Partial<ModuleInfo>) => {\n    if (!moduleInfo.id || !moduleInfo.importers?.length) {\n      return false\n    }\n    const importer = moduleIdProcessor(moduleInfo.importers[0])\n    const id = moduleInfo.id\n    const clearId = moduleIdProcessor(id, false)\n\n    const parsedUrl = parseQuerystring(clearId)\n\n    return parsedUrl && parsedUrl.type === 'script' && parsedUrl.vue && importer === moduleIdProcessor(id)\n  }\n\n  /** 判断模块是否是一个 vue 文件本体 */\n  const isVueEntity = (moduleInfo: Partial<ModuleInfo>) => {\n    if (!moduleInfo.id || !moduleInfo.importers?.length || !moduleInfo.id.endsWith('.vue')) {\n      return false\n    }\n    const clearId = moduleIdProcessor(moduleInfo.id)\n    // info: 判断 importers 是否存在一个是虚拟组件（与当前moduleInfo.id一致）\n    return moduleInfo.importers.some((importer) => {\n      const [is, real, _type] = parseVirtualPath(importer)\n      return is && [moduleInfo.id, clearId].includes(real)\n    })\n  }\n  // #endregion\n\n  logger.info('[optimization] 分包优化插件已启用', !enableLogger)\n\n  return {\n    name: 'uniapp-subpackages-optimization',\n    enforce: 'post', // 控制执行顺序，post 保证在其他插件之后执行\n    config(config, { command }) {\n      if (!platform.startsWith('mp')) {\n        logger.warn('[optimization] 分包优化插件仅需在小程序平台启用，跳过', !enableLogger)\n        return\n      }\n\n      const UNI_OPT_TRACE = process.env.UNI_OPT_TRACE === 'true'\n      logger.info(`[optimization] 分包优化开启状态: ${UNI_OPT_TRACE}`, !true) // !!! 此处始终开启log\n      if (!UNI_OPT_TRACE)\n        return\n\n      const originalOutput = config?.build?.rollupOptions?.output\n\n      const existingManualChunks\n        = (Array.isArray(originalOutput) ? originalOutput[0]?.manualChunks : originalOutput?.manualChunks) as ManualChunksOption\n\n      // 合并已有的 manualChunks 配置\n      const mergedManualChunks: ManualChunksOption = (id, meta) => {\n        /** 依赖图谱分析 */\n        function getDependencyGraph(startId: string, getRelated: (info: ModuleInfo) => readonly string[] = info => info.importers): string[] {\n          const visited = new Set<string>()\n          const result: string[] = []\n\n          // 支持自定义遍历方向\n          function traverse(\n            currentId: string,\n            getRelated: (info: ModuleInfo) => readonly string[], // 控制遍历方向的回调函数\n          ) {\n            if (visited.has(currentId))\n              return\n\n            visited.add(currentId)\n            result.push(currentId)\n\n            const moduleInfo = meta.getModuleInfo(currentId)\n            if (!moduleInfo)\n              return\n\n            getRelated(moduleInfo).forEach((relatedId) => {\n              traverse(relatedId, getRelated)\n            })\n          }\n\n          // 默认：向上追踪 importers（谁导入了当前模块）\n          traverse(startId, getRelated)\n\n          // 若需要向下追踪 dependencies（当前模块导入了谁）：\n          // traverse(startId, (info) => info.dependencies);\n\n          return result\n        }\n\n        const normalizedId = normalizePath(id)\n        const filename = normalizedId.split('?')[0]\n\n        let mainFlag: false | string = false\n\n        // #region ⚠️ 以下代码是分包优化的核心逻辑\n        // 处理项目内的js,ts文件 | 兼容 json 文件，import json 会被处理成 js 模块\n        if (EXTNAME_JS_RE.test(filename) && (filename.startsWith(normalizePath(inputDir)) || filename.includes('node_modules'))) {\n          // 如果这个资源只属于一个子包，并且其调用组件的不存在跨包调用的情况，那么这个模块就会被加入到对应的子包中。\n          const moduleInfo = meta.getModuleInfo(id)\n          if (!moduleInfo) {\n            throw new Error(`moduleInfo is not found: ${id}`)\n          }\n\n          const importersGraph = getDependencyGraph(id) // 搜寻引用图谱\n          const newMatchSubPackages = findSubPackages(importersGraph)\n          // 查找引用图谱中是否有主包的组件文件模块\n          const newMainPackageComponent = findMainPackageComponent(importersGraph)\n          // 查找三方依赖组件库\n          const nodeModulesComponent = findNodeModulesComponent(importersGraph)\n          /**\n           * 是否有被项目入口文件直接引用\n           */\n          const isEntry = hasEntryFile(importersGraph, meta)\n\n          // 引用图谱中只找到一个子包的引用，并且没有出现主包的组件以及入口文件(main.{ts|js})，且没有被三方组件库引用，则说明只归属该子包\n          if (!isEntry && newMatchSubPackages.size === 1 && newMainPackageComponent.size === 0 && nodeModulesComponent.size === 0) {\n            logger.info(`[optimization] 子包: ${[...newMatchSubPackages].join(', ')} <- ${filename}`, !enableLogger)\n            return `${newMatchSubPackages.values().next().value}common/vendor`\n          }\n          mainFlag = id\n        }\n        // #endregion\n\n        // 调用已有的 manualChunks 配置 ｜ 此处必须考虑到原有的配置，是为了使 uniapp 原本的分包配置生效\n        if (existingManualChunks && typeof existingManualChunks === 'function') {\n          const result = existingManualChunks(id, meta)\n\n          if (result === undefined) {\n            const moduleInfo = meta.getModuleInfo(id)\n\n            if (moduleInfo) {\n              // 当 UNI_INPUT_DIR 和 VITE_ROOT_DIR 一致时，clearId 和 clearIdForRoot 是一致的\n              // hbx 创建的没有 src 的目录，就是一致的情况\n              // 其余情况，clearIdForRoot 是相对路径的情况下，clearId 可能是绝对路径\n              const clearIdForRoot = moduleIdProcessorForRoot(moduleInfo.id)\n              const clearId = moduleIdProcessor(moduleInfo.id)\n\n              if (mainFlag === id && !moduleInfo.isEntry && !findNodeModules([moduleInfo.id]).length) {\n                logger.info(`[optimization] 主包内容强制落盘: ${clearId}`, !enableLogger)\n                return clearId\n              }\n\n              // TODO: 绝对路径是 monorepo 项目结构下的三方依赖库的特点，或者其他情况，这里暂时不做处理\n              if (normalizeVueEntityModule && isVueEntity(moduleInfo) && !path.isAbsolute(clearIdForRoot)) {\n                const targetId = path.isAbsolute(clearId) ? clearIdForRoot : clearId\n                const originalTarget = targetId.replace(EXT_RE, '')\n                // 规整没处理好的 vue 实体模块\n                // uniapp 会将三方库落盘路径 node_modules 改为 node-modules\n                // TODO: 需要对此类业务总结、抽离\n                const target = originalTarget.replace(/^(\\.?\\/)?node_modules\\//, 'node-modules/')\n                logger.info(`[optimization] 规整 vue 实体模块: ${originalTarget} -> ${target}-vendor`, !enableLogger)\n                return `${target}-vendor`\n              }\n            }\n          }\n\n          logger.warn(`[optimization] default: ${result} <- ${id}`, !enableLogger)\n          return result\n        }\n      }\n\n      return {\n        build: {\n          rollupOptions: {\n            output: {\n              manualChunks: mergedManualChunks,\n            },\n          },\n        },\n      }\n    },\n  }\n}\n\nexport default SubPackagesOptimization\n","import type { PluginOption } from 'vite'\nimport type { IOptions } from './type'\nimport fs from 'node:fs'\nimport process from 'node:process'\nimport { name } from '../package.json'\nimport { logger } from './common/Logger'\nimport { ParseOptions } from './common/ParseOptions'\nimport AsyncComponentProcessor from './plugin/async-component-processor'\nimport AsyncImportProcessor from './plugin/async-import-processor'\nimport SubPackagesOptimization from './plugin/subpackages-optimization'\nimport { ensureDirectoryExists, initializeVitePathResolver } from './utils'\n\nexport default (options: IOptions = {}): PluginOption => {\n  const parse = new ParseOptions(options)\n\n  let logToFile = options.logToFile\n  if (logToFile) {\n    logToFile = typeof logToFile === 'string' ? logToFile : `node_modules/.cache/${name}/logs.log`\n    if (typeof logToFile !== 'string') {\n      logger.warn('logToFile should be a string, using default path: node_modules/.cache/bundle-optimizer/logs.log')\n      logToFile = `node_modules/.cache/${name}/logs.log`\n    }\n    ensureDirectoryExists(logToFile)\n    // 删除旧的日志文件\n    try {\n      fs.unlinkSync(logToFile)\n    }\n    catch (error) {\n      logger.error(`Failed to delete old log file: ${error}`)\n    }\n\n    logger.onLog = (context, level, message, timestamp) => {\n      const line = `${context} ${level} [${timestamp}]: ${message}`\n      fs.writeFileSync(logToFile as string, `${line}\\n`, { flag: 'a' })\n    }\n  }\n\n  const platform = process.env.UNI_PLATFORM\n\n  logger.info(`[main] 当前构建平台: ${platform}`, !true)\n\n  return [\n    {\n      name: 'optimization:initialized',\n      config(config) {\n        initializeVitePathResolver(config)\n      },\n    },\n    // 分包优化\n    parse.enable.optimization && SubPackagesOptimization(parse.logger.optimization, parse.optimization),\n    // js/ts插件的异步调用\n    parse.enable['async-import'] && AsyncImportProcessor(parse.logger['async-import']),\n    // vue组件的异步调用\n    parse.enable['async-component'] && AsyncComponentProcessor(parse.logger['async-component']),\n  ]\n}\n\nexport type * from './type'\n"],"x_google_ignoreList":[4,5],"mappings":"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AAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAK;EAAI;EAAI;EAAI;EAAG;EAAI;EAAG;EAAG;EAAI;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAG;EAAG;EAAI;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAG;EAAG;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAK;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAK;EAAI;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAI;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAK;EAAI;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAK;EAAI;EAAK;EAAI;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAK;EAAI;EAAI;EAAG;EAAG;EAAI;EAAI;EAAG;EAAI;EAAI;EAAK;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAI;EAAI;EAAK;EAAI;EAAI;EAAG;EAAG;EAAI;EAAG;EAAI;EAAK;EAAG;EAAI;EAAK;EAAK;EAAK;EAAI;EAAK;EAAM;EAAI;EAAI;EAAM;EAAI;EAAG;EAAI;EAAM;EAAG;EAAK;EAAM;EAAI;EAAM;EAAK;EAAG;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAG;EAAI;EAAK;EAAI;EAAK;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAM;EAAI;EAAI;EAAI;EAAK;EAAM;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAK;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAK;EAAM;EAAK;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAM;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAK;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAG;EAAG;EAAM;EAAI;EAAG;EAAG;EAAK;EAAI;EAAK;EAAI;EAAI;EAAG;EAAI;EAAG;EAAK;EAAI;EAAI;EAAI;EAAK;EAAI;EAAK;EAAI;EAAG;EAAG;EAAK;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAK;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAK;EAAI;EAAI;EAAG;EAAG;EAAM;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAM;EAAO;EAAI;EAAM;EAAG;EAAM;EAAG;EAAM;EAAI;EAAK;EAAM;EAAK;EAAM;EAAM;EAAG;EAAK;CAC1tE,MAAM,wBAAwB;EAAC;EAAK;EAAG;EAAK;EAAG;EAAK;EAAG;EAAK;EAAG;EAAM;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAK;EAAG;EAAK;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAK;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAK;EAAG;EAAI;EAAI;EAAI;EAAI;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAG;EAAK;EAAI;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAK;EAAG;EAAG;EAAG;EAAI;EAAG;EAAI;EAAI;EAAI;EAAG;EAAI;EAAI;EAAG;EAAG;EAAG;EAAI;EAAI;EAAI;EAAG;EAAG;EAAK;EAAI;EAAK;EAAG;EAAI;EA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"}