@typescript-deploys/pr-build 5.2.0-pr-54278-2 → 5.2.0-pr-54290-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,7 @@ var ts = (() => {
35
35
  "src/compiler/corePublic.ts"() {
36
36
  "use strict";
37
37
  versionMajorMinor = "5.2";
38
- version = `${versionMajorMinor}.0-insiders.20230516`;
38
+ version = `${versionMajorMinor}.0-insiders.20230517`;
39
39
  Comparison = /* @__PURE__ */ ((Comparison3) => {
40
40
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
41
41
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -45,34 +45,6 @@ var ts = (() => {
45
45
  }
46
46
  });
47
47
 
48
- // src/compiler/pluginUtilities.ts
49
- function setTypeScriptNamespace(entrypoint, ts) {
50
- if (currentEntrypoint !== void 0)
51
- throw new Error("ts namespace already set");
52
- currentEntrypoint = entrypoint;
53
- currentTsNamespace = ts;
54
- }
55
- function getTypeScriptNamespace() {
56
- if (currentTsNamespace === void 0)
57
- throw new Error("ts namespace unset");
58
- return currentTsNamespace;
59
- }
60
- function shouldAllowPlugins(options) {
61
- switch (currentEntrypoint) {
62
- case "tsserver":
63
- case "tsserverlibrary":
64
- case "typescript":
65
- return true;
66
- }
67
- return options.allowPlugins ?? false;
68
- }
69
- var currentEntrypoint, currentTsNamespace;
70
- var init_pluginUtilities = __esm({
71
- "src/compiler/pluginUtilities.ts"() {
72
- "use strict";
73
- }
74
- });
75
-
76
48
  // src/compiler/core.ts
77
49
  function length(array) {
78
50
  return array ? array.length : 0;
@@ -8690,7 +8662,6 @@ ${lanes.join("\n")}
8690
8662
  Compiles_the_current_project_with_additional_settings: diag(6929, 3 /* Message */, "Compiles_the_current_project_with_additional_settings_6929", "Compiles the current project, with additional settings."),
8691
8663
  true_for_ES2022_and_above_including_ESNext: diag(6930, 3 /* Message */, "true_for_ES2022_and_above_including_ESNext_6930", "`true` for ES2022 and above, including ESNext."),
8692
8664
  List_of_file_name_suffixes_to_search_when_resolving_a_module: diag(6931, 1 /* Error */, "List_of_file_name_suffixes_to_search_when_resolving_a_module_6931", "List of file name suffixes to search when resolving a module."),
8693
- Option_allowPlugins_must_be_specified_when_compiler_plugins_are_present: diag(6932, 1 /* Error */, "Option_allowPlugins_must_be_specified_when_compiler_plugins_are_present_6932", "Option '--allowPlugins' must be specified when compiler plugins are present."),
8694
8665
  Variable_0_implicitly_has_an_1_type: diag(7005, 1 /* Error */, "Variable_0_implicitly_has_an_1_type_7005", "Variable '{0}' implicitly has an '{1}' type."),
8695
8666
  Parameter_0_implicitly_has_an_1_type: diag(7006, 1 /* Error */, "Parameter_0_implicitly_has_an_1_type_7006", "Parameter '{0}' implicitly has an '{1}' type."),
8696
8667
  Member_0_implicitly_has_an_1_type: diag(7008, 1 /* Error */, "Member_0_implicitly_has_an_1_type_7008", "Member '{0}' implicitly has an '{1}' type."),
@@ -37585,15 +37556,6 @@ ${lanes.join("\n")}
37585
37556
  isCommandLineOnly: true,
37586
37557
  description: Diagnostics.Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit,
37587
37558
  defaultValueDescription: Diagnostics.Platform_specific
37588
- },
37589
- {
37590
- name: "allowPlugins",
37591
- type: "boolean",
37592
- affectsSemanticDiagnostics: true,
37593
- affectsEmit: true,
37594
- affectsBuildInfo: true,
37595
- defaultValueDescription: void 0,
37596
- isCommandLineOnly: true
37597
37559
  }
37598
37560
  ];
37599
37561
  targetOptionDeclaration = {
@@ -72151,7 +72113,7 @@ ${lanes.join("\n")}
72151
72113
  }
72152
72114
  const typeArgument = typeArgumentTypes[i];
72153
72115
  if (!checkTypeAssignableTo(
72154
- typeArgument,
72116
+ getTypeWithThisArgument(typeArgument, typeArgument),
72155
72117
  getTypeWithThisArgument(instantiateType(constraint, mapper), typeArgument),
72156
72118
  reportErrors2 ? typeArgumentNodes[i] : void 0,
72157
72119
  typeArgumentHeadMessage,
@@ -72185,8 +72147,9 @@ ${lanes.join("\n")}
72185
72147
  void 0,
72186
72148
  checkMode
72187
72149
  );
72150
+ const checkAttributesType = checkMode & 4 /* SkipContextSensitive */ ? getRegularTypeOfObjectLiteral(attributesType) : attributesType;
72188
72151
  return checkTagNameDoesNotExpectTooManyArguments() && checkTypeRelatedToAndOptionallyElaborate(
72189
- attributesType,
72152
+ checkAttributesType,
72190
72153
  paramType,
72191
72154
  relation,
72192
72155
  reportErrors2 ? node.tagName : void 0,
@@ -109531,19 +109494,6 @@ ${lanes.join("\n")}
109531
109494
  declarationTransformers: getDeclarationTransformers(customTransformers)
109532
109495
  };
109533
109496
  }
109534
- function mergeCustomTransformers(...customTransformers) {
109535
- if (!some(customTransformers))
109536
- return void 0;
109537
- const result = {};
109538
- for (const transformer of customTransformers) {
109539
- if (!transformer)
109540
- continue;
109541
- result.before = concatenate(result.before, transformer.before);
109542
- result.after = concatenate(result.after, transformer.after);
109543
- result.afterDeclarations = concatenate(result.afterDeclarations, transformer.afterDeclarations);
109544
- }
109545
- return result;
109546
- }
109547
109497
  function getScriptTransformers(compilerOptions, customTransformers, emitOnly) {
109548
109498
  if (emitOnly)
109549
109499
  return emptyArray;
@@ -116064,8 +116014,7 @@ ${lanes.join("\n")}
116064
116014
  realpath,
116065
116015
  readDirectory: (path, extensions, include, exclude, depth) => system.readDirectory(path, extensions, include, exclude, depth),
116066
116016
  createDirectory: (d) => system.createDirectory(d),
116067
- createHash: maybeBind(system, system.createHash),
116068
- require: maybeBind(system, system.require)
116017
+ createHash: maybeBind(system, system.createHash)
116069
116018
  };
116070
116019
  return compilerHost;
116071
116020
  }
@@ -117628,26 +117577,6 @@ ${lanes.join("\n")}
117628
117577
  function isEmitBlocked(emitFileName) {
117629
117578
  return hasEmitBlockingDiagnostics.has(toPath3(emitFileName));
117630
117579
  }
117631
- function getCustomTransformers() {
117632
- if (!host.require) {
117633
- return emptyArray;
117634
- }
117635
- const compilerOptions = program.getCompilerOptions();
117636
- if (!shouldAllowPlugins(compilerOptions)) {
117637
- return emptyArray;
117638
- }
117639
- const customTransformers = mapDefined(compilerOptions.plugins, (config) => {
117640
- if (config.type !== "transformer")
117641
- return void 0;
117642
- const result = host.require(program.getCurrentDirectory(), config.path);
117643
- Debug.assertIsDefined(result.module);
117644
- const factory2 = result.module;
117645
- Debug.assert(typeof factory2 === "function");
117646
- const plugin = factory2({ typescript: getTypeScriptNamespace() });
117647
- return plugin.create({ program, config });
117648
- });
117649
- return customTransformers ?? emptyArray;
117650
- }
117651
117580
  function emitWorker(program2, sourceFile, writeFileCallback, cancellationToken, emitOnly, customTransformers, forceDtsEmit) {
117652
117581
  if (!forceDtsEmit) {
117653
117582
  const result = handleNoEmitOptions(program2, sourceFile, writeFileCallback, cancellationToken);
@@ -117656,12 +117585,11 @@ ${lanes.join("\n")}
117656
117585
  }
117657
117586
  const emitResolver = getTypeChecker().getEmitResolver(outFile(options) ? void 0 : sourceFile, cancellationToken);
117658
117587
  mark("beforeEmit");
117659
- const mergedCustomTransformers = mergeCustomTransformers(...getCustomTransformers(), customTransformers);
117660
117588
  const emitResult = emitFiles(
117661
117589
  emitResolver,
117662
117590
  getEmitHost(writeFileCallback),
117663
117591
  sourceFile,
117664
- getTransformers(options, mergedCustomTransformers, emitOnly),
117592
+ getTransformers(options, customTransformers, emitOnly),
117665
117593
  emitOnly,
117666
117594
  /*onlyBuildInfo*/
117667
117595
  false,
@@ -119115,14 +119043,6 @@ ${lanes.join("\n")}
119115
119043
  verifyEmitFilePath(emitFileNames.declarationFilePath, emitFilesSeen);
119116
119044
  });
119117
119045
  }
119118
- if (options.plugins && !shouldAllowPlugins(options)) {
119119
- for (const plugin of options.plugins) {
119120
- if (plugin.type === void 0)
119121
- continue;
119122
- programDiagnostics.add(createCompilerDiagnostic(Diagnostics.Option_allowPlugins_must_be_specified_when_compiler_plugins_are_present));
119123
- break;
119124
- }
119125
- }
119126
119046
  function verifyEmitFilePath(emitFileName, emitFilesSeen) {
119127
119047
  if (emitFileName) {
119128
119048
  const emitFilePath = toPath3(emitFileName);
@@ -126211,7 +126131,6 @@ ${lanes.join("\n")}
126211
126131
  "src/compiler/_namespaces/ts.ts"() {
126212
126132
  "use strict";
126213
126133
  init_corePublic();
126214
- init_pluginUtilities();
126215
126134
  init_core();
126216
126135
  init_debug();
126217
126136
  init_semver();
@@ -172458,7 +172377,7 @@ ${options.prefix}` : "\n" : options.prefix
172458
172377
  for (const globalPluginName of this.projectService.globalPlugins) {
172459
172378
  if (!globalPluginName)
172460
172379
  continue;
172461
- if (options.plugins && options.plugins.some((p) => p.type === void 0 && p.name === globalPluginName))
172380
+ if (options.plugins && options.plugins.some((p) => p.name === globalPluginName))
172462
172381
  continue;
172463
172382
  this.projectService.logger.info(`Loading global plugin ${globalPluginName}`);
172464
172383
  this.enablePlugin({ name: globalPluginName, global: true }, searchPaths);
@@ -172482,7 +172401,7 @@ ${options.prefix}` : "\n" : options.prefix
172482
172401
  serverHost: this.projectService.host,
172483
172402
  session: this.projectService.session
172484
172403
  };
172485
- const pluginModule = pluginModuleFactory({ typescript: getTypeScriptNamespace() });
172404
+ const pluginModule = pluginModuleFactory({ typescript: ts_exports2 });
172486
172405
  const newLS = pluginModule.create(info);
172487
172406
  for (const k of Object.keys(this.languageService)) {
172488
172407
  if (!(k in newLS)) {
@@ -173169,9 +173088,7 @@ ${options.prefix}` : "\n" : options.prefix
173169
173088
  }
173170
173089
  if (options.plugins) {
173171
173090
  for (const pluginConfigEntry of options.plugins) {
173172
- if (pluginConfigEntry.type === void 0) {
173173
- this.enablePlugin(pluginConfigEntry, searchPaths);
173174
- }
173091
+ this.enablePlugin(pluginConfigEntry, searchPaths);
173175
173092
  }
173176
173093
  }
173177
173094
  return this.enableGlobalPlugins(options);
@@ -180779,41 +180696,8 @@ ${e.message}`;
180779
180696
  });
180780
180697
 
180781
180698
  // src/server/_namespaces/ts.server.ts
180782
- var init_ts_server3 = __esm({
180783
- "src/server/_namespaces/ts.server.ts"() {
180784
- "use strict";
180785
- init_ts_server();
180786
- init_ts_server2();
180787
- init_types4();
180788
- init_utilitiesPublic3();
180789
- init_utilities5();
180790
- init_ts_server_protocol();
180791
- init_scriptInfo();
180792
- init_typingsCache();
180793
- init_project();
180794
- init_editorServices();
180795
- init_moduleSpecifierCache();
180796
- init_packageJsonCache();
180797
- init_session();
180798
- init_scriptVersionCache();
180799
- }
180800
- });
180801
-
180802
- // src/server/_namespaces/ts.ts
180803
- var init_ts7 = __esm({
180804
- "src/server/_namespaces/ts.ts"() {
180805
- "use strict";
180806
- init_ts2();
180807
- init_ts3();
180808
- init_ts4();
180809
- init_ts5();
180810
- init_ts_server3();
180811
- }
180812
- });
180813
-
180814
- // src/tsserverlibrary/_namespaces/ts.server.ts
180815
- var ts_server_exports4 = {};
180816
- __export(ts_server_exports4, {
180699
+ var ts_server_exports3 = {};
180700
+ __export(ts_server_exports3, {
180817
180701
  ActionInvalidate: () => ActionInvalidate,
180818
180702
  ActionPackageInstalled: () => ActionPackageInstalled,
180819
180703
  ActionSet: () => ActionSet,
@@ -180904,17 +180788,29 @@ ${e.message}`;
180904
180788
  typingsInstaller: () => ts_server_typingsInstaller_exports,
180905
180789
  updateProjectIfDirty: () => updateProjectIfDirty
180906
180790
  });
180907
- var init_ts_server4 = __esm({
180908
- "src/tsserverlibrary/_namespaces/ts.server.ts"() {
180791
+ var init_ts_server3 = __esm({
180792
+ "src/server/_namespaces/ts.server.ts"() {
180909
180793
  "use strict";
180910
180794
  init_ts_server();
180911
- init_ts_server3();
180795
+ init_ts_server2();
180796
+ init_types4();
180797
+ init_utilitiesPublic3();
180798
+ init_utilities5();
180799
+ init_ts_server_protocol();
180800
+ init_scriptInfo();
180801
+ init_typingsCache();
180802
+ init_project();
180803
+ init_editorServices();
180804
+ init_moduleSpecifierCache();
180805
+ init_packageJsonCache();
180806
+ init_session();
180807
+ init_scriptVersionCache();
180912
180808
  }
180913
180809
  });
180914
180810
 
180915
- // src/tsserverlibrary/_namespaces/ts.ts
180916
- var ts_exports3 = {};
180917
- __export(ts_exports3, {
180811
+ // src/server/_namespaces/ts.ts
180812
+ var ts_exports2 = {};
180813
+ __export(ts_exports2, {
180918
180814
  ANONYMOUS: () => ANONYMOUS,
180919
180815
  AccessFlags: () => AccessFlags,
180920
180816
  AssertionLevel: () => AssertionLevel,
@@ -181948,7 +181844,6 @@ ${e.message}`;
181948
181844
  getTypeNodeIfAccessible: () => getTypeNodeIfAccessible,
181949
181845
  getTypeParameterFromJsDoc: () => getTypeParameterFromJsDoc,
181950
181846
  getTypeParameterOwner: () => getTypeParameterOwner,
181951
- getTypeScriptNamespace: () => getTypeScriptNamespace,
181952
181847
  getTypesPackageName: () => getTypesPackageName,
181953
181848
  getUILocale: () => getUILocale,
181954
181849
  getUniqueName: () => getUniqueName,
@@ -182732,7 +182627,6 @@ ${e.message}`;
182732
182627
  memoizeCached: () => memoizeCached,
182733
182628
  memoizeOne: () => memoizeOne,
182734
182629
  memoizeWeak: () => memoizeWeak,
182735
- mergeCustomTransformers: () => mergeCustomTransformers,
182736
182630
  metadataHelper: () => metadataHelper,
182737
182631
  min: () => min,
182738
182632
  minAndMax: () => minAndMax,
@@ -182926,7 +182820,7 @@ ${e.message}`;
182926
182820
  screenStartingMessageCodes: () => screenStartingMessageCodes,
182927
182821
  semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations,
182928
182822
  serializeCompilerOptions: () => serializeCompilerOptions,
182929
- server: () => ts_server_exports4,
182823
+ server: () => ts_server_exports3,
182930
182824
  servicesVersion: () => servicesVersion,
182931
182825
  setCommentRange: () => setCommentRange,
182932
182826
  setConfigFileInOptions: () => setConfigFileInOptions,
@@ -182964,11 +182858,9 @@ ${e.message}`;
182964
182858
  setTextRangePosWidth: () => setTextRangePosWidth,
182965
182859
  setTokenSourceMapRange: () => setTokenSourceMapRange,
182966
182860
  setTypeNode: () => setTypeNode,
182967
- setTypeScriptNamespace: () => setTypeScriptNamespace,
182968
182861
  setUILocale: () => setUILocale,
182969
182862
  setValueDeclaration: () => setValueDeclaration,
182970
182863
  shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension,
182971
- shouldAllowPlugins: () => shouldAllowPlugins,
182972
182864
  shouldPreserveConstEnums: () => shouldPreserveConstEnums,
182973
182865
  shouldResolveJsRequire: () => shouldResolveJsRequire,
182974
182866
  shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules,
@@ -183183,16 +183075,2393 @@ ${e.message}`;
183183
183075
  zipToModeAwareCache: () => zipToModeAwareCache,
183184
183076
  zipWith: () => zipWith
183185
183077
  });
183186
- var init_ts8 = __esm({
183187
- "src/tsserverlibrary/_namespaces/ts.ts"() {
183078
+ var init_ts7 = __esm({
183079
+ "src/server/_namespaces/ts.ts"() {
183188
183080
  "use strict";
183189
183081
  init_ts2();
183190
183082
  init_ts3();
183191
183083
  init_ts4();
183192
- init_ts7();
183193
- init_ts_server4();
183194
- init_ts8();
183195
- setTypeScriptNamespace("tsserverlibrary", ts_exports3);
183084
+ init_ts5();
183085
+ init_ts_server3();
183086
+ }
183087
+ });
183088
+
183089
+ // src/tsserverlibrary/_namespaces/ts.server.ts
183090
+ var ts_server_exports4 = {};
183091
+ __export(ts_server_exports4, {
183092
+ ActionInvalidate: () => ActionInvalidate,
183093
+ ActionPackageInstalled: () => ActionPackageInstalled,
183094
+ ActionSet: () => ActionSet,
183095
+ ActionWatchTypingLocations: () => ActionWatchTypingLocations,
183096
+ Arguments: () => Arguments,
183097
+ AutoImportProviderProject: () => AutoImportProviderProject,
183098
+ CharRangeSection: () => CharRangeSection,
183099
+ CommandNames: () => CommandNames,
183100
+ ConfigFileDiagEvent: () => ConfigFileDiagEvent,
183101
+ ConfiguredProject: () => ConfiguredProject2,
183102
+ Errors: () => Errors,
183103
+ EventBeginInstallTypes: () => EventBeginInstallTypes,
183104
+ EventEndInstallTypes: () => EventEndInstallTypes,
183105
+ EventInitializationFailed: () => EventInitializationFailed,
183106
+ EventTypesRegistry: () => EventTypesRegistry,
183107
+ ExternalProject: () => ExternalProject2,
183108
+ GcTimer: () => GcTimer,
183109
+ InferredProject: () => InferredProject2,
183110
+ LargeFileReferencedEvent: () => LargeFileReferencedEvent,
183111
+ LineIndex: () => LineIndex,
183112
+ LineLeaf: () => LineLeaf,
183113
+ LineNode: () => LineNode,
183114
+ LogLevel: () => LogLevel2,
183115
+ Msg: () => Msg,
183116
+ OpenFileInfoTelemetryEvent: () => OpenFileInfoTelemetryEvent,
183117
+ Project: () => Project3,
183118
+ ProjectInfoTelemetryEvent: () => ProjectInfoTelemetryEvent,
183119
+ ProjectKind: () => ProjectKind,
183120
+ ProjectLanguageServiceStateEvent: () => ProjectLanguageServiceStateEvent,
183121
+ ProjectLoadingFinishEvent: () => ProjectLoadingFinishEvent,
183122
+ ProjectLoadingStartEvent: () => ProjectLoadingStartEvent,
183123
+ ProjectReferenceProjectLoadKind: () => ProjectReferenceProjectLoadKind,
183124
+ ProjectService: () => ProjectService3,
183125
+ ProjectsUpdatedInBackgroundEvent: () => ProjectsUpdatedInBackgroundEvent,
183126
+ ScriptInfo: () => ScriptInfo,
183127
+ ScriptVersionCache: () => ScriptVersionCache,
183128
+ Session: () => Session3,
183129
+ TextStorage: () => TextStorage,
183130
+ ThrottledOperations: () => ThrottledOperations,
183131
+ TypingsCache: () => TypingsCache,
183132
+ allFilesAreJsOrDts: () => allFilesAreJsOrDts,
183133
+ allRootFilesAreJsOrDts: () => allRootFilesAreJsOrDts,
183134
+ asNormalizedPath: () => asNormalizedPath,
183135
+ convertCompilerOptions: () => convertCompilerOptions,
183136
+ convertFormatOptions: () => convertFormatOptions,
183137
+ convertScriptKindName: () => convertScriptKindName,
183138
+ convertTypeAcquisition: () => convertTypeAcquisition,
183139
+ convertUserPreferences: () => convertUserPreferences,
183140
+ convertWatchOptions: () => convertWatchOptions,
183141
+ countEachFileTypes: () => countEachFileTypes,
183142
+ createInstallTypingsRequest: () => createInstallTypingsRequest,
183143
+ createModuleSpecifierCache: () => createModuleSpecifierCache,
183144
+ createNormalizedPathMap: () => createNormalizedPathMap,
183145
+ createPackageJsonCache: () => createPackageJsonCache,
183146
+ createSortedArray: () => createSortedArray2,
183147
+ emptyArray: () => emptyArray2,
183148
+ findArgument: () => findArgument,
183149
+ forEachResolvedProjectReferenceProject: () => forEachResolvedProjectReferenceProject,
183150
+ formatDiagnosticToProtocol: () => formatDiagnosticToProtocol,
183151
+ formatMessage: () => formatMessage2,
183152
+ getBaseConfigFileName: () => getBaseConfigFileName,
183153
+ getLocationInNewDocument: () => getLocationInNewDocument,
183154
+ hasArgument: () => hasArgument,
183155
+ hasNoTypeScriptSource: () => hasNoTypeScriptSource,
183156
+ indent: () => indent2,
183157
+ isConfigFile: () => isConfigFile,
183158
+ isConfiguredProject: () => isConfiguredProject,
183159
+ isDynamicFileName: () => isDynamicFileName,
183160
+ isExternalProject: () => isExternalProject,
183161
+ isInferredProject: () => isInferredProject,
183162
+ isInferredProjectName: () => isInferredProjectName,
183163
+ makeAutoImportProviderProjectName: () => makeAutoImportProviderProjectName,
183164
+ makeAuxiliaryProjectName: () => makeAuxiliaryProjectName,
183165
+ makeInferredProjectName: () => makeInferredProjectName,
183166
+ maxFileSize: () => maxFileSize,
183167
+ maxProgramSizeForNonTsFiles: () => maxProgramSizeForNonTsFiles,
183168
+ normalizedPathToPath: () => normalizedPathToPath,
183169
+ nowString: () => nowString,
183170
+ nullCancellationToken: () => nullCancellationToken,
183171
+ nullTypingsInstaller: () => nullTypingsInstaller,
183172
+ projectContainsInfoDirectly: () => projectContainsInfoDirectly,
183173
+ protocol: () => ts_server_protocol_exports,
183174
+ removeSorted: () => removeSorted,
183175
+ stringifyIndented: () => stringifyIndented,
183176
+ toEvent: () => toEvent,
183177
+ toNormalizedPath: () => toNormalizedPath,
183178
+ tryConvertScriptKindName: () => tryConvertScriptKindName,
183179
+ typingsInstaller: () => ts_server_typingsInstaller_exports,
183180
+ updateProjectIfDirty: () => updateProjectIfDirty
183181
+ });
183182
+ var init_ts_server4 = __esm({
183183
+ "src/tsserverlibrary/_namespaces/ts.server.ts"() {
183184
+ "use strict";
183185
+ init_ts_server();
183186
+ init_ts_server3();
183187
+ }
183188
+ });
183189
+
183190
+ // src/tsserverlibrary/_namespaces/ts.ts
183191
+ var ts_exports3 = {};
183192
+ __export(ts_exports3, {
183193
+ ANONYMOUS: () => ANONYMOUS,
183194
+ AccessFlags: () => AccessFlags,
183195
+ AssertionLevel: () => AssertionLevel,
183196
+ AssignmentDeclarationKind: () => AssignmentDeclarationKind,
183197
+ AssignmentKind: () => AssignmentKind,
183198
+ Associativity: () => Associativity,
183199
+ BreakpointResolver: () => ts_BreakpointResolver_exports,
183200
+ BuilderFileEmit: () => BuilderFileEmit,
183201
+ BuilderProgramKind: () => BuilderProgramKind,
183202
+ BuilderState: () => BuilderState,
183203
+ BundleFileSectionKind: () => BundleFileSectionKind,
183204
+ CallHierarchy: () => ts_CallHierarchy_exports,
183205
+ CharacterCodes: () => CharacterCodes,
183206
+ CheckFlags: () => CheckFlags,
183207
+ CheckMode: () => CheckMode,
183208
+ ClassificationType: () => ClassificationType,
183209
+ ClassificationTypeNames: () => ClassificationTypeNames,
183210
+ CommentDirectiveType: () => CommentDirectiveType,
183211
+ Comparison: () => Comparison,
183212
+ CompletionInfoFlags: () => CompletionInfoFlags,
183213
+ CompletionTriggerKind: () => CompletionTriggerKind,
183214
+ Completions: () => ts_Completions_exports,
183215
+ ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel,
183216
+ ContextFlags: () => ContextFlags,
183217
+ CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter,
183218
+ Debug: () => Debug,
183219
+ DiagnosticCategory: () => DiagnosticCategory,
183220
+ Diagnostics: () => Diagnostics,
183221
+ DocumentHighlights: () => DocumentHighlights,
183222
+ ElementFlags: () => ElementFlags,
183223
+ EmitFlags: () => EmitFlags,
183224
+ EmitHint: () => EmitHint,
183225
+ EmitOnly: () => EmitOnly,
183226
+ EndOfLineState: () => EndOfLineState,
183227
+ EnumKind: () => EnumKind,
183228
+ ExitStatus: () => ExitStatus,
183229
+ ExportKind: () => ExportKind,
183230
+ Extension: () => Extension,
183231
+ ExternalEmitHelpers: () => ExternalEmitHelpers,
183232
+ FileIncludeKind: () => FileIncludeKind,
183233
+ FilePreprocessingDiagnosticsKind: () => FilePreprocessingDiagnosticsKind,
183234
+ FileSystemEntryKind: () => FileSystemEntryKind,
183235
+ FileWatcherEventKind: () => FileWatcherEventKind,
183236
+ FindAllReferences: () => ts_FindAllReferences_exports,
183237
+ FlattenLevel: () => FlattenLevel,
183238
+ FlowFlags: () => FlowFlags,
183239
+ ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences,
183240
+ FunctionFlags: () => FunctionFlags,
183241
+ GeneratedIdentifierFlags: () => GeneratedIdentifierFlags,
183242
+ GetLiteralTextFlags: () => GetLiteralTextFlags,
183243
+ GoToDefinition: () => ts_GoToDefinition_exports,
183244
+ HighlightSpanKind: () => HighlightSpanKind,
183245
+ ImportKind: () => ImportKind,
183246
+ ImportsNotUsedAsValues: () => ImportsNotUsedAsValues,
183247
+ IndentStyle: () => IndentStyle,
183248
+ IndexFlags: () => IndexFlags,
183249
+ IndexKind: () => IndexKind,
183250
+ InferenceFlags: () => InferenceFlags,
183251
+ InferencePriority: () => InferencePriority,
183252
+ InlayHintKind: () => InlayHintKind,
183253
+ InlayHints: () => ts_InlayHints_exports,
183254
+ InternalEmitFlags: () => InternalEmitFlags,
183255
+ InternalSymbolName: () => InternalSymbolName,
183256
+ InvalidatedProjectKind: () => InvalidatedProjectKind,
183257
+ JsDoc: () => ts_JsDoc_exports,
183258
+ JsTyping: () => ts_JsTyping_exports,
183259
+ JsxEmit: () => JsxEmit,
183260
+ JsxFlags: () => JsxFlags,
183261
+ JsxReferenceKind: () => JsxReferenceKind,
183262
+ LanguageServiceMode: () => LanguageServiceMode,
183263
+ LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter,
183264
+ LanguageVariant: () => LanguageVariant,
183265
+ LexicalEnvironmentFlags: () => LexicalEnvironmentFlags,
183266
+ ListFormat: () => ListFormat,
183267
+ LogLevel: () => LogLevel,
183268
+ MemberOverrideStatus: () => MemberOverrideStatus,
183269
+ ModifierFlags: () => ModifierFlags,
183270
+ ModuleDetectionKind: () => ModuleDetectionKind,
183271
+ ModuleInstanceState: () => ModuleInstanceState,
183272
+ ModuleKind: () => ModuleKind,
183273
+ ModuleResolutionKind: () => ModuleResolutionKind,
183274
+ ModuleSpecifierEnding: () => ModuleSpecifierEnding,
183275
+ NavigateTo: () => ts_NavigateTo_exports,
183276
+ NavigationBar: () => ts_NavigationBar_exports,
183277
+ NewLineKind: () => NewLineKind,
183278
+ NodeBuilderFlags: () => NodeBuilderFlags,
183279
+ NodeCheckFlags: () => NodeCheckFlags,
183280
+ NodeFactoryFlags: () => NodeFactoryFlags,
183281
+ NodeFlags: () => NodeFlags,
183282
+ NodeResolutionFeatures: () => NodeResolutionFeatures,
183283
+ ObjectFlags: () => ObjectFlags,
183284
+ OperationCanceledException: () => OperationCanceledException,
183285
+ OperatorPrecedence: () => OperatorPrecedence,
183286
+ OrganizeImports: () => ts_OrganizeImports_exports,
183287
+ OrganizeImportsMode: () => OrganizeImportsMode,
183288
+ OuterExpressionKinds: () => OuterExpressionKinds,
183289
+ OutliningElementsCollector: () => ts_OutliningElementsCollector_exports,
183290
+ OutliningSpanKind: () => OutliningSpanKind,
183291
+ OutputFileType: () => OutputFileType,
183292
+ PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference,
183293
+ PackageJsonDependencyGroup: () => PackageJsonDependencyGroup,
183294
+ PatternMatchKind: () => PatternMatchKind,
183295
+ PollingInterval: () => PollingInterval,
183296
+ PollingWatchKind: () => PollingWatchKind,
183297
+ PragmaKindFlags: () => PragmaKindFlags,
183298
+ PrivateIdentifierKind: () => PrivateIdentifierKind,
183299
+ ProcessLevel: () => ProcessLevel,
183300
+ QuotePreference: () => QuotePreference,
183301
+ RelationComparisonResult: () => RelationComparisonResult,
183302
+ Rename: () => ts_Rename_exports,
183303
+ ScriptElementKind: () => ScriptElementKind,
183304
+ ScriptElementKindModifier: () => ScriptElementKindModifier,
183305
+ ScriptKind: () => ScriptKind,
183306
+ ScriptSnapshot: () => ScriptSnapshot,
183307
+ ScriptTarget: () => ScriptTarget,
183308
+ SemanticClassificationFormat: () => SemanticClassificationFormat,
183309
+ SemanticMeaning: () => SemanticMeaning,
183310
+ SemicolonPreference: () => SemicolonPreference,
183311
+ SignatureCheckMode: () => SignatureCheckMode,
183312
+ SignatureFlags: () => SignatureFlags,
183313
+ SignatureHelp: () => ts_SignatureHelp_exports,
183314
+ SignatureKind: () => SignatureKind,
183315
+ SmartSelectionRange: () => ts_SmartSelectionRange_exports,
183316
+ SnippetKind: () => SnippetKind,
183317
+ SortKind: () => SortKind,
183318
+ StructureIsReused: () => StructureIsReused,
183319
+ SymbolAccessibility: () => SymbolAccessibility,
183320
+ SymbolDisplay: () => ts_SymbolDisplay_exports,
183321
+ SymbolDisplayPartKind: () => SymbolDisplayPartKind,
183322
+ SymbolFlags: () => SymbolFlags,
183323
+ SymbolFormatFlags: () => SymbolFormatFlags,
183324
+ SyntaxKind: () => SyntaxKind,
183325
+ SyntheticSymbolKind: () => SyntheticSymbolKind,
183326
+ Ternary: () => Ternary,
183327
+ ThrottledCancellationToken: () => ThrottledCancellationToken,
183328
+ TokenClass: () => TokenClass,
183329
+ TokenFlags: () => TokenFlags,
183330
+ TransformFlags: () => TransformFlags,
183331
+ TypeFacts: () => TypeFacts,
183332
+ TypeFlags: () => TypeFlags,
183333
+ TypeFormatFlags: () => TypeFormatFlags,
183334
+ TypeMapKind: () => TypeMapKind,
183335
+ TypePredicateKind: () => TypePredicateKind,
183336
+ TypeReferenceSerializationKind: () => TypeReferenceSerializationKind,
183337
+ TypeScriptServicesFactory: () => TypeScriptServicesFactory,
183338
+ UnionReduction: () => UnionReduction,
183339
+ UpToDateStatusType: () => UpToDateStatusType,
183340
+ VarianceFlags: () => VarianceFlags,
183341
+ Version: () => Version,
183342
+ VersionRange: () => VersionRange,
183343
+ WatchDirectoryFlags: () => WatchDirectoryFlags,
183344
+ WatchDirectoryKind: () => WatchDirectoryKind,
183345
+ WatchFileKind: () => WatchFileKind,
183346
+ WatchLogLevel: () => WatchLogLevel,
183347
+ WatchType: () => WatchType,
183348
+ accessPrivateIdentifier: () => accessPrivateIdentifier,
183349
+ addEmitFlags: () => addEmitFlags,
183350
+ addEmitHelper: () => addEmitHelper,
183351
+ addEmitHelpers: () => addEmitHelpers,
183352
+ addInternalEmitFlags: () => addInternalEmitFlags,
183353
+ addNodeFactoryPatcher: () => addNodeFactoryPatcher,
183354
+ addObjectAllocatorPatcher: () => addObjectAllocatorPatcher,
183355
+ addRange: () => addRange,
183356
+ addRelatedInfo: () => addRelatedInfo,
183357
+ addSyntheticLeadingComment: () => addSyntheticLeadingComment,
183358
+ addSyntheticTrailingComment: () => addSyntheticTrailingComment,
183359
+ addToSeen: () => addToSeen,
183360
+ advancedAsyncSuperHelper: () => advancedAsyncSuperHelper,
183361
+ affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations,
183362
+ affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations,
183363
+ allKeysStartWithDot: () => allKeysStartWithDot,
183364
+ altDirectorySeparator: () => altDirectorySeparator,
183365
+ and: () => and,
183366
+ append: () => append,
183367
+ appendIfUnique: () => appendIfUnique,
183368
+ arrayFrom: () => arrayFrom,
183369
+ arrayIsEqualTo: () => arrayIsEqualTo,
183370
+ arrayIsHomogeneous: () => arrayIsHomogeneous,
183371
+ arrayIsSorted: () => arrayIsSorted,
183372
+ arrayOf: () => arrayOf,
183373
+ arrayReverseIterator: () => arrayReverseIterator,
183374
+ arrayToMap: () => arrayToMap,
183375
+ arrayToMultiMap: () => arrayToMultiMap,
183376
+ arrayToNumericMap: () => arrayToNumericMap,
183377
+ arraysEqual: () => arraysEqual,
183378
+ assertType: () => assertType,
183379
+ assign: () => assign,
183380
+ assignHelper: () => assignHelper,
183381
+ asyncDelegator: () => asyncDelegator,
183382
+ asyncGeneratorHelper: () => asyncGeneratorHelper,
183383
+ asyncSuperHelper: () => asyncSuperHelper,
183384
+ asyncValues: () => asyncValues,
183385
+ attachFileToDiagnostics: () => attachFileToDiagnostics,
183386
+ awaitHelper: () => awaitHelper,
183387
+ awaiterHelper: () => awaiterHelper,
183388
+ base64decode: () => base64decode,
183389
+ base64encode: () => base64encode,
183390
+ binarySearch: () => binarySearch,
183391
+ binarySearchKey: () => binarySearchKey,
183392
+ bindSourceFile: () => bindSourceFile,
183393
+ breakIntoCharacterSpans: () => breakIntoCharacterSpans,
183394
+ breakIntoWordSpans: () => breakIntoWordSpans,
183395
+ buildLinkParts: () => buildLinkParts,
183396
+ buildOpts: () => buildOpts,
183397
+ buildOverload: () => buildOverload,
183398
+ bundlerModuleNameResolver: () => bundlerModuleNameResolver,
183399
+ canBeConvertedToAsync: () => canBeConvertedToAsync,
183400
+ canHaveDecorators: () => canHaveDecorators,
183401
+ canHaveExportModifier: () => canHaveExportModifier,
183402
+ canHaveFlowNode: () => canHaveFlowNode,
183403
+ canHaveIllegalDecorators: () => canHaveIllegalDecorators,
183404
+ canHaveIllegalModifiers: () => canHaveIllegalModifiers,
183405
+ canHaveIllegalType: () => canHaveIllegalType,
183406
+ canHaveIllegalTypeParameters: () => canHaveIllegalTypeParameters,
183407
+ canHaveJSDoc: () => canHaveJSDoc,
183408
+ canHaveLocals: () => canHaveLocals,
183409
+ canHaveModifiers: () => canHaveModifiers,
183410
+ canHaveSymbol: () => canHaveSymbol,
183411
+ canJsonReportNoInputFiles: () => canJsonReportNoInputFiles,
183412
+ canProduceDiagnostics: () => canProduceDiagnostics,
183413
+ canUsePropertyAccess: () => canUsePropertyAccess,
183414
+ canWatchAffectingLocation: () => canWatchAffectingLocation,
183415
+ canWatchAtTypes: () => canWatchAtTypes,
183416
+ canWatchDirectoryOrFile: () => canWatchDirectoryOrFile,
183417
+ cartesianProduct: () => cartesianProduct,
183418
+ cast: () => cast,
183419
+ chainBundle: () => chainBundle,
183420
+ chainDiagnosticMessages: () => chainDiagnosticMessages,
183421
+ changeAnyExtension: () => changeAnyExtension,
183422
+ changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache,
183423
+ changeExtension: () => changeExtension,
183424
+ changesAffectModuleResolution: () => changesAffectModuleResolution,
183425
+ changesAffectingProgramStructure: () => changesAffectingProgramStructure,
183426
+ childIsDecorated: () => childIsDecorated,
183427
+ classElementOrClassElementParameterIsDecorated: () => classElementOrClassElementParameterIsDecorated,
183428
+ classOrConstructorParameterIsDecorated: () => classOrConstructorParameterIsDecorated,
183429
+ classPrivateFieldGetHelper: () => classPrivateFieldGetHelper,
183430
+ classPrivateFieldInHelper: () => classPrivateFieldInHelper,
183431
+ classPrivateFieldSetHelper: () => classPrivateFieldSetHelper,
183432
+ classicNameResolver: () => classicNameResolver,
183433
+ classifier: () => ts_classifier_exports,
183434
+ cleanExtendedConfigCache: () => cleanExtendedConfigCache,
183435
+ clear: () => clear,
183436
+ clearMap: () => clearMap,
183437
+ clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher,
183438
+ climbPastPropertyAccess: () => climbPastPropertyAccess,
183439
+ climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess,
183440
+ clone: () => clone,
183441
+ cloneCompilerOptions: () => cloneCompilerOptions,
183442
+ closeFileWatcher: () => closeFileWatcher,
183443
+ closeFileWatcherOf: () => closeFileWatcherOf,
183444
+ codefix: () => ts_codefix_exports,
183445
+ collapseTextChangeRangesAcrossMultipleVersions: () => collapseTextChangeRangesAcrossMultipleVersions,
183446
+ collectExternalModuleInfo: () => collectExternalModuleInfo,
183447
+ combine: () => combine,
183448
+ combinePaths: () => combinePaths,
183449
+ commentPragmas: () => commentPragmas,
183450
+ commonOptionsWithBuild: () => commonOptionsWithBuild,
183451
+ commonPackageFolders: () => commonPackageFolders,
183452
+ compact: () => compact,
183453
+ compareBooleans: () => compareBooleans,
183454
+ compareDataObjects: () => compareDataObjects,
183455
+ compareDiagnostics: () => compareDiagnostics,
183456
+ compareDiagnosticsSkipRelatedInformation: () => compareDiagnosticsSkipRelatedInformation,
183457
+ compareEmitHelpers: () => compareEmitHelpers,
183458
+ compareNumberOfDirectorySeparators: () => compareNumberOfDirectorySeparators,
183459
+ comparePaths: () => comparePaths,
183460
+ comparePathsCaseInsensitive: () => comparePathsCaseInsensitive,
183461
+ comparePathsCaseSensitive: () => comparePathsCaseSensitive,
183462
+ comparePatternKeys: () => comparePatternKeys,
183463
+ compareProperties: () => compareProperties,
183464
+ compareStringsCaseInsensitive: () => compareStringsCaseInsensitive,
183465
+ compareStringsCaseInsensitiveEslintCompatible: () => compareStringsCaseInsensitiveEslintCompatible,
183466
+ compareStringsCaseSensitive: () => compareStringsCaseSensitive,
183467
+ compareStringsCaseSensitiveUI: () => compareStringsCaseSensitiveUI,
183468
+ compareTextSpans: () => compareTextSpans,
183469
+ compareValues: () => compareValues,
183470
+ compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption,
183471
+ compilerOptionsAffectDeclarationPath: () => compilerOptionsAffectDeclarationPath,
183472
+ compilerOptionsAffectEmit: () => compilerOptionsAffectEmit,
183473
+ compilerOptionsAffectSemanticDiagnostics: () => compilerOptionsAffectSemanticDiagnostics,
183474
+ compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics,
183475
+ compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules,
183476
+ compose: () => compose,
183477
+ computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames,
183478
+ computeLineAndCharacterOfPosition: () => computeLineAndCharacterOfPosition,
183479
+ computeLineOfPosition: () => computeLineOfPosition,
183480
+ computeLineStarts: () => computeLineStarts,
183481
+ computePositionOfLineAndCharacter: () => computePositionOfLineAndCharacter,
183482
+ computeSignature: () => computeSignature,
183483
+ computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics,
183484
+ computeSuggestionDiagnostics: () => computeSuggestionDiagnostics,
183485
+ concatenate: () => concatenate,
183486
+ concatenateDiagnosticMessageChains: () => concatenateDiagnosticMessageChains,
183487
+ consumesNodeCoreModules: () => consumesNodeCoreModules,
183488
+ contains: () => contains,
183489
+ containsIgnoredPath: () => containsIgnoredPath,
183490
+ containsObjectRestOrSpread: () => containsObjectRestOrSpread,
183491
+ containsParseError: () => containsParseError,
183492
+ containsPath: () => containsPath,
183493
+ convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry,
183494
+ convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson,
183495
+ convertJsonOption: () => convertJsonOption,
183496
+ convertToBase64: () => convertToBase64,
183497
+ convertToJson: () => convertToJson,
183498
+ convertToObject: () => convertToObject,
183499
+ convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths,
183500
+ convertToRelativePath: () => convertToRelativePath,
183501
+ convertToTSConfig: () => convertToTSConfig,
183502
+ convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson,
183503
+ copyComments: () => copyComments,
183504
+ copyEntries: () => copyEntries,
183505
+ copyLeadingComments: () => copyLeadingComments,
183506
+ copyProperties: () => copyProperties,
183507
+ copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments,
183508
+ copyTrailingComments: () => copyTrailingComments,
183509
+ couldStartTrivia: () => couldStartTrivia,
183510
+ countWhere: () => countWhere,
183511
+ createAbstractBuilder: () => createAbstractBuilder,
183512
+ createAccessorPropertyBackingField: () => createAccessorPropertyBackingField,
183513
+ createAccessorPropertyGetRedirector: () => createAccessorPropertyGetRedirector,
183514
+ createAccessorPropertySetRedirector: () => createAccessorPropertySetRedirector,
183515
+ createBaseNodeFactory: () => createBaseNodeFactory,
183516
+ createBinaryExpressionTrampoline: () => createBinaryExpressionTrampoline,
183517
+ createBindingHelper: () => createBindingHelper,
183518
+ createBuildInfo: () => createBuildInfo,
183519
+ createBuilderProgram: () => createBuilderProgram,
183520
+ createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo,
183521
+ createBuilderStatusReporter: () => createBuilderStatusReporter,
183522
+ createCacheWithRedirects: () => createCacheWithRedirects,
183523
+ createCacheableExportInfoMap: () => createCacheableExportInfoMap,
183524
+ createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost,
183525
+ createClassifier: () => createClassifier,
183526
+ createCommentDirectivesMap: () => createCommentDirectivesMap,
183527
+ createCompilerDiagnostic: () => createCompilerDiagnostic,
183528
+ createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType,
183529
+ createCompilerDiagnosticFromMessageChain: () => createCompilerDiagnosticFromMessageChain,
183530
+ createCompilerHost: () => createCompilerHost,
183531
+ createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost,
183532
+ createCompilerHostWorker: () => createCompilerHostWorker,
183533
+ createDetachedDiagnostic: () => createDetachedDiagnostic,
183534
+ createDiagnosticCollection: () => createDiagnosticCollection,
183535
+ createDiagnosticForFileFromMessageChain: () => createDiagnosticForFileFromMessageChain,
183536
+ createDiagnosticForNode: () => createDiagnosticForNode,
183537
+ createDiagnosticForNodeArray: () => createDiagnosticForNodeArray,
183538
+ createDiagnosticForNodeArrayFromMessageChain: () => createDiagnosticForNodeArrayFromMessageChain,
183539
+ createDiagnosticForNodeFromMessageChain: () => createDiagnosticForNodeFromMessageChain,
183540
+ createDiagnosticForNodeInSourceFile: () => createDiagnosticForNodeInSourceFile,
183541
+ createDiagnosticForRange: () => createDiagnosticForRange,
183542
+ createDiagnosticMessageChainFromDiagnostic: () => createDiagnosticMessageChainFromDiagnostic,
183543
+ createDiagnosticReporter: () => createDiagnosticReporter,
183544
+ createDocumentPositionMapper: () => createDocumentPositionMapper,
183545
+ createDocumentRegistry: () => createDocumentRegistry,
183546
+ createDocumentRegistryInternal: () => createDocumentRegistryInternal,
183547
+ createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram,
183548
+ createEmitHelperFactory: () => createEmitHelperFactory,
183549
+ createEmptyExports: () => createEmptyExports,
183550
+ createExpressionForJsxElement: () => createExpressionForJsxElement,
183551
+ createExpressionForJsxFragment: () => createExpressionForJsxFragment,
183552
+ createExpressionForObjectLiteralElementLike: () => createExpressionForObjectLiteralElementLike,
183553
+ createExpressionForPropertyName: () => createExpressionForPropertyName,
183554
+ createExpressionFromEntityName: () => createExpressionFromEntityName,
183555
+ createExternalHelpersImportDeclarationIfNeeded: () => createExternalHelpersImportDeclarationIfNeeded,
183556
+ createFileDiagnostic: () => createFileDiagnostic,
183557
+ createFileDiagnosticFromMessageChain: () => createFileDiagnosticFromMessageChain,
183558
+ createForOfBindingStatement: () => createForOfBindingStatement,
183559
+ createGetCanonicalFileName: () => createGetCanonicalFileName,
183560
+ createGetSourceFile: () => createGetSourceFile,
183561
+ createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode,
183562
+ createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName,
183563
+ createGetSymbolWalker: () => createGetSymbolWalker,
183564
+ createIncrementalCompilerHost: () => createIncrementalCompilerHost,
183565
+ createIncrementalProgram: () => createIncrementalProgram,
183566
+ createInputFiles: () => createInputFiles,
183567
+ createInputFilesWithFilePaths: () => createInputFilesWithFilePaths,
183568
+ createInputFilesWithFileTexts: () => createInputFilesWithFileTexts,
183569
+ createJsxFactoryExpression: () => createJsxFactoryExpression,
183570
+ createLanguageService: () => createLanguageService,
183571
+ createLanguageServiceSourceFile: () => createLanguageServiceSourceFile,
183572
+ createMemberAccessForPropertyName: () => createMemberAccessForPropertyName,
183573
+ createModeAwareCache: () => createModeAwareCache,
183574
+ createModeAwareCacheKey: () => createModeAwareCacheKey,
183575
+ createModuleNotFoundChain: () => createModuleNotFoundChain,
183576
+ createModuleResolutionCache: () => createModuleResolutionCache,
183577
+ createModuleResolutionLoader: () => createModuleResolutionLoader,
183578
+ createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost,
183579
+ createMultiMap: () => createMultiMap,
183580
+ createNodeConverters: () => createNodeConverters,
183581
+ createNodeFactory: () => createNodeFactory,
183582
+ createOptionNameMap: () => createOptionNameMap,
183583
+ createOverload: () => createOverload,
183584
+ createPackageJsonImportFilter: () => createPackageJsonImportFilter,
183585
+ createPackageJsonInfo: () => createPackageJsonInfo,
183586
+ createParenthesizerRules: () => createParenthesizerRules,
183587
+ createPatternMatcher: () => createPatternMatcher,
183588
+ createPrependNodes: () => createPrependNodes,
183589
+ createPrinter: () => createPrinter,
183590
+ createPrinterWithDefaults: () => createPrinterWithDefaults,
183591
+ createPrinterWithRemoveComments: () => createPrinterWithRemoveComments,
183592
+ createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape,
183593
+ createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon,
183594
+ createProgram: () => createProgram,
183595
+ createProgramHost: () => createProgramHost,
183596
+ createPropertyNameNodeForIdentifierOrLiteral: () => createPropertyNameNodeForIdentifierOrLiteral,
183597
+ createQueue: () => createQueue,
183598
+ createRange: () => createRange,
183599
+ createRedirectedBuilderProgram: () => createRedirectedBuilderProgram,
183600
+ createResolutionCache: () => createResolutionCache,
183601
+ createRuntimeTypeSerializer: () => createRuntimeTypeSerializer,
183602
+ createScanner: () => createScanner,
183603
+ createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram,
183604
+ createSet: () => createSet,
183605
+ createSolutionBuilder: () => createSolutionBuilder,
183606
+ createSolutionBuilderHost: () => createSolutionBuilderHost,
183607
+ createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch,
183608
+ createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost,
183609
+ createSortedArray: () => createSortedArray,
183610
+ createSourceFile: () => createSourceFile,
183611
+ createSourceMapGenerator: () => createSourceMapGenerator,
183612
+ createSourceMapSource: () => createSourceMapSource,
183613
+ createSuperAccessVariableStatement: () => createSuperAccessVariableStatement,
183614
+ createSymbolTable: () => createSymbolTable,
183615
+ createSymlinkCache: () => createSymlinkCache,
183616
+ createSystemWatchFunctions: () => createSystemWatchFunctions,
183617
+ createTextChange: () => createTextChange,
183618
+ createTextChangeFromStartLength: () => createTextChangeFromStartLength,
183619
+ createTextChangeRange: () => createTextChangeRange,
183620
+ createTextRangeFromNode: () => createTextRangeFromNode,
183621
+ createTextRangeFromSpan: () => createTextRangeFromSpan,
183622
+ createTextSpan: () => createTextSpan,
183623
+ createTextSpanFromBounds: () => createTextSpanFromBounds,
183624
+ createTextSpanFromNode: () => createTextSpanFromNode,
183625
+ createTextSpanFromRange: () => createTextSpanFromRange,
183626
+ createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent,
183627
+ createTextWriter: () => createTextWriter,
183628
+ createTokenRange: () => createTokenRange,
183629
+ createTypeChecker: () => createTypeChecker,
183630
+ createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache,
183631
+ createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader,
183632
+ createUnparsedSourceFile: () => createUnparsedSourceFile,
183633
+ createWatchCompilerHost: () => createWatchCompilerHost2,
183634
+ createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile,
183635
+ createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions,
183636
+ createWatchFactory: () => createWatchFactory,
183637
+ createWatchHost: () => createWatchHost,
183638
+ createWatchProgram: () => createWatchProgram,
183639
+ createWatchStatusReporter: () => createWatchStatusReporter,
183640
+ createWriteFileMeasuringIO: () => createWriteFileMeasuringIO,
183641
+ declarationNameToString: () => declarationNameToString,
183642
+ decodeMappings: () => decodeMappings,
183643
+ decodedTextSpanIntersectsWith: () => decodedTextSpanIntersectsWith,
183644
+ decorateHelper: () => decorateHelper,
183645
+ deduplicate: () => deduplicate,
183646
+ defaultIncludeSpec: () => defaultIncludeSpec,
183647
+ defaultInitCompilerOptions: () => defaultInitCompilerOptions,
183648
+ defaultMaximumTruncationLength: () => defaultMaximumTruncationLength,
183649
+ detectSortCaseSensitivity: () => detectSortCaseSensitivity,
183650
+ diagnosticCategoryName: () => diagnosticCategoryName,
183651
+ diagnosticToString: () => diagnosticToString,
183652
+ directoryProbablyExists: () => directoryProbablyExists,
183653
+ directorySeparator: () => directorySeparator,
183654
+ displayPart: () => displayPart,
183655
+ displayPartsToString: () => displayPartsToString,
183656
+ disposeEmitNodes: () => disposeEmitNodes,
183657
+ documentSpansEqual: () => documentSpansEqual,
183658
+ dumpTracingLegend: () => dumpTracingLegend,
183659
+ elementAt: () => elementAt,
183660
+ elideNodes: () => elideNodes,
183661
+ emitComments: () => emitComments,
183662
+ emitDetachedComments: () => emitDetachedComments,
183663
+ emitFiles: () => emitFiles,
183664
+ emitFilesAndReportErrors: () => emitFilesAndReportErrors,
183665
+ emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus,
183666
+ emitModuleKindIsNonNodeESM: () => emitModuleKindIsNonNodeESM,
183667
+ emitNewLineBeforeLeadingCommentOfPosition: () => emitNewLineBeforeLeadingCommentOfPosition,
183668
+ emitNewLineBeforeLeadingComments: () => emitNewLineBeforeLeadingComments,
183669
+ emitNewLineBeforeLeadingCommentsOfPosition: () => emitNewLineBeforeLeadingCommentsOfPosition,
183670
+ emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics,
183671
+ emitUsingBuildInfo: () => emitUsingBuildInfo,
183672
+ emptyArray: () => emptyArray,
183673
+ emptyFileSystemEntries: () => emptyFileSystemEntries,
183674
+ emptyMap: () => emptyMap,
183675
+ emptyOptions: () => emptyOptions,
183676
+ emptySet: () => emptySet,
183677
+ endsWith: () => endsWith,
183678
+ ensurePathIsNonModuleName: () => ensurePathIsNonModuleName,
183679
+ ensureScriptKind: () => ensureScriptKind,
183680
+ ensureTrailingDirectorySeparator: () => ensureTrailingDirectorySeparator,
183681
+ entityNameToString: () => entityNameToString,
183682
+ enumerateInsertsAndDeletes: () => enumerateInsertsAndDeletes,
183683
+ equalOwnProperties: () => equalOwnProperties,
183684
+ equateStringsCaseInsensitive: () => equateStringsCaseInsensitive,
183685
+ equateStringsCaseSensitive: () => equateStringsCaseSensitive,
183686
+ equateValues: () => equateValues,
183687
+ esDecorateHelper: () => esDecorateHelper,
183688
+ escapeJsxAttributeString: () => escapeJsxAttributeString,
183689
+ escapeLeadingUnderscores: () => escapeLeadingUnderscores,
183690
+ escapeNonAsciiString: () => escapeNonAsciiString,
183691
+ escapeSnippetText: () => escapeSnippetText,
183692
+ escapeString: () => escapeString,
183693
+ every: () => every,
183694
+ expandPreOrPostfixIncrementOrDecrementExpression: () => expandPreOrPostfixIncrementOrDecrementExpression,
183695
+ explainFiles: () => explainFiles,
183696
+ explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat,
183697
+ exportAssignmentIsAlias: () => exportAssignmentIsAlias,
183698
+ exportStarHelper: () => exportStarHelper,
183699
+ expressionResultIsUnused: () => expressionResultIsUnused,
183700
+ extend: () => extend,
183701
+ extendsHelper: () => extendsHelper,
183702
+ extensionFromPath: () => extensionFromPath,
183703
+ extensionIsTS: () => extensionIsTS,
183704
+ extensionsNotSupportingExtensionlessResolution: () => extensionsNotSupportingExtensionlessResolution,
183705
+ externalHelpersModuleNameText: () => externalHelpersModuleNameText,
183706
+ factory: () => factory,
183707
+ fileExtensionIs: () => fileExtensionIs,
183708
+ fileExtensionIsOneOf: () => fileExtensionIsOneOf,
183709
+ fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics,
183710
+ fileShouldUseJavaScriptRequire: () => fileShouldUseJavaScriptRequire,
183711
+ filter: () => filter,
183712
+ filterMutate: () => filterMutate,
183713
+ filterSemanticDiagnostics: () => filterSemanticDiagnostics,
183714
+ find: () => find,
183715
+ findAncestor: () => findAncestor,
183716
+ findBestPatternMatch: () => findBestPatternMatch,
183717
+ findChildOfKind: () => findChildOfKind,
183718
+ findComputedPropertyNameCacheAssignment: () => findComputedPropertyNameCacheAssignment,
183719
+ findConfigFile: () => findConfigFile,
183720
+ findContainingList: () => findContainingList,
183721
+ findDiagnosticForNode: () => findDiagnosticForNode,
183722
+ findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken,
183723
+ findIndex: () => findIndex,
183724
+ findLast: () => findLast,
183725
+ findLastIndex: () => findLastIndex,
183726
+ findListItemInfo: () => findListItemInfo,
183727
+ findMap: () => findMap,
183728
+ findModifier: () => findModifier,
183729
+ findNextToken: () => findNextToken,
183730
+ findPackageJson: () => findPackageJson,
183731
+ findPackageJsons: () => findPackageJsons,
183732
+ findPrecedingMatchingToken: () => findPrecedingMatchingToken,
183733
+ findPrecedingToken: () => findPrecedingToken,
183734
+ findSuperStatementIndex: () => findSuperStatementIndex,
183735
+ findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition,
183736
+ findUseStrictPrologue: () => findUseStrictPrologue,
183737
+ first: () => first,
183738
+ firstDefined: () => firstDefined,
183739
+ firstDefinedIterator: () => firstDefinedIterator,
183740
+ firstIterator: () => firstIterator,
183741
+ firstOrOnly: () => firstOrOnly,
183742
+ firstOrUndefined: () => firstOrUndefined,
183743
+ firstOrUndefinedIterator: () => firstOrUndefinedIterator,
183744
+ fixupCompilerOptions: () => fixupCompilerOptions,
183745
+ flatMap: () => flatMap,
183746
+ flatMapIterator: () => flatMapIterator,
183747
+ flatMapToMutable: () => flatMapToMutable,
183748
+ flatten: () => flatten,
183749
+ flattenCommaList: () => flattenCommaList,
183750
+ flattenDestructuringAssignment: () => flattenDestructuringAssignment,
183751
+ flattenDestructuringBinding: () => flattenDestructuringBinding,
183752
+ flattenDiagnosticMessageText: () => flattenDiagnosticMessageText,
183753
+ forEach: () => forEach,
183754
+ forEachAncestor: () => forEachAncestor,
183755
+ forEachAncestorDirectory: () => forEachAncestorDirectory,
183756
+ forEachChild: () => forEachChild,
183757
+ forEachChildRecursively: () => forEachChildRecursively,
183758
+ forEachEmittedFile: () => forEachEmittedFile,
183759
+ forEachEnclosingBlockScopeContainer: () => forEachEnclosingBlockScopeContainer,
183760
+ forEachEntry: () => forEachEntry,
183761
+ forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom,
183762
+ forEachImportClauseDeclaration: () => forEachImportClauseDeclaration,
183763
+ forEachKey: () => forEachKey,
183764
+ forEachLeadingCommentRange: () => forEachLeadingCommentRange,
183765
+ forEachNameInAccessChainWalkingLeft: () => forEachNameInAccessChainWalkingLeft,
183766
+ forEachPropertyAssignment: () => forEachPropertyAssignment,
183767
+ forEachResolvedProjectReference: () => forEachResolvedProjectReference,
183768
+ forEachReturnStatement: () => forEachReturnStatement,
183769
+ forEachRight: () => forEachRight,
183770
+ forEachTrailingCommentRange: () => forEachTrailingCommentRange,
183771
+ forEachTsConfigPropArray: () => forEachTsConfigPropArray,
183772
+ forEachUnique: () => forEachUnique,
183773
+ forEachYieldExpression: () => forEachYieldExpression,
183774
+ forSomeAncestorDirectory: () => forSomeAncestorDirectory,
183775
+ formatColorAndReset: () => formatColorAndReset,
183776
+ formatDiagnostic: () => formatDiagnostic,
183777
+ formatDiagnostics: () => formatDiagnostics,
183778
+ formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext,
183779
+ formatGeneratedName: () => formatGeneratedName,
183780
+ formatGeneratedNamePart: () => formatGeneratedNamePart,
183781
+ formatLocation: () => formatLocation,
183782
+ formatMessage: () => formatMessage,
183783
+ formatStringFromArgs: () => formatStringFromArgs,
183784
+ formatting: () => ts_formatting_exports,
183785
+ fullTripleSlashAMDReferencePathRegEx: () => fullTripleSlashAMDReferencePathRegEx,
183786
+ fullTripleSlashReferencePathRegEx: () => fullTripleSlashReferencePathRegEx,
183787
+ generateDjb2Hash: () => generateDjb2Hash,
183788
+ generateTSConfig: () => generateTSConfig,
183789
+ generatorHelper: () => generatorHelper,
183790
+ getAdjustedReferenceLocation: () => getAdjustedReferenceLocation,
183791
+ getAdjustedRenameLocation: () => getAdjustedRenameLocation,
183792
+ getAliasDeclarationFromName: () => getAliasDeclarationFromName,
183793
+ getAllAccessorDeclarations: () => getAllAccessorDeclarations,
183794
+ getAllDecoratorsOfClass: () => getAllDecoratorsOfClass,
183795
+ getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement,
183796
+ getAllJSDocTags: () => getAllJSDocTags,
183797
+ getAllJSDocTagsOfKind: () => getAllJSDocTagsOfKind,
183798
+ getAllKeys: () => getAllKeys,
183799
+ getAllProjectOutputs: () => getAllProjectOutputs,
183800
+ getAllSuperTypeNodes: () => getAllSuperTypeNodes,
183801
+ getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers,
183802
+ getAllowJSCompilerOption: () => getAllowJSCompilerOption,
183803
+ getAllowSyntheticDefaultImports: () => getAllowSyntheticDefaultImports,
183804
+ getAncestor: () => getAncestor,
183805
+ getAnyExtensionFromPath: () => getAnyExtensionFromPath,
183806
+ getAreDeclarationMapsEnabled: () => getAreDeclarationMapsEnabled,
183807
+ getAssignedExpandoInitializer: () => getAssignedExpandoInitializer,
183808
+ getAssignedName: () => getAssignedName,
183809
+ getAssignmentDeclarationKind: () => getAssignmentDeclarationKind,
183810
+ getAssignmentDeclarationPropertyAccessKind: () => getAssignmentDeclarationPropertyAccessKind,
183811
+ getAssignmentTargetKind: () => getAssignmentTargetKind,
183812
+ getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames,
183813
+ getBaseFileName: () => getBaseFileName,
183814
+ getBinaryOperatorPrecedence: () => getBinaryOperatorPrecedence,
183815
+ getBuildInfo: () => getBuildInfo,
183816
+ getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap,
183817
+ getBuildInfoText: () => getBuildInfoText,
183818
+ getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder,
183819
+ getBuilderCreationParameters: () => getBuilderCreationParameters,
183820
+ getBuilderFileEmit: () => getBuilderFileEmit,
183821
+ getCheckFlags: () => getCheckFlags,
183822
+ getClassExtendsHeritageElement: () => getClassExtendsHeritageElement,
183823
+ getClassLikeDeclarationOfSymbol: () => getClassLikeDeclarationOfSymbol,
183824
+ getCombinedLocalAndExportSymbolFlags: () => getCombinedLocalAndExportSymbolFlags,
183825
+ getCombinedModifierFlags: () => getCombinedModifierFlags,
183826
+ getCombinedNodeFlags: () => getCombinedNodeFlags,
183827
+ getCombinedNodeFlagsAlwaysIncludeJSDoc: () => getCombinedNodeFlagsAlwaysIncludeJSDoc,
183828
+ getCommentRange: () => getCommentRange,
183829
+ getCommonSourceDirectory: () => getCommonSourceDirectory,
183830
+ getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig,
183831
+ getCompilerOptionValue: () => getCompilerOptionValue,
183832
+ getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue,
183833
+ getConditions: () => getConditions,
183834
+ getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics,
183835
+ getConstantValue: () => getConstantValue,
183836
+ getContainerNode: () => getContainerNode,
183837
+ getContainingClass: () => getContainingClass,
183838
+ getContainingClassStaticBlock: () => getContainingClassStaticBlock,
183839
+ getContainingFunction: () => getContainingFunction,
183840
+ getContainingFunctionDeclaration: () => getContainingFunctionDeclaration,
183841
+ getContainingFunctionOrClassStaticBlock: () => getContainingFunctionOrClassStaticBlock,
183842
+ getContainingNodeArray: () => getContainingNodeArray,
183843
+ getContainingObjectLiteralElement: () => getContainingObjectLiteralElement,
183844
+ getContextualTypeFromParent: () => getContextualTypeFromParent,
183845
+ getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode,
183846
+ getCurrentTime: () => getCurrentTime,
183847
+ getDeclarationDiagnostics: () => getDeclarationDiagnostics,
183848
+ getDeclarationEmitExtensionForPath: () => getDeclarationEmitExtensionForPath,
183849
+ getDeclarationEmitOutputFilePath: () => getDeclarationEmitOutputFilePath,
183850
+ getDeclarationEmitOutputFilePathWorker: () => getDeclarationEmitOutputFilePathWorker,
183851
+ getDeclarationFromName: () => getDeclarationFromName,
183852
+ getDeclarationModifierFlagsFromSymbol: () => getDeclarationModifierFlagsFromSymbol,
183853
+ getDeclarationOfKind: () => getDeclarationOfKind,
183854
+ getDeclarationsOfKind: () => getDeclarationsOfKind,
183855
+ getDeclaredExpandoInitializer: () => getDeclaredExpandoInitializer,
183856
+ getDecorators: () => getDecorators,
183857
+ getDefaultCompilerOptions: () => getDefaultCompilerOptions2,
183858
+ getDefaultExportInfoWorker: () => getDefaultExportInfoWorker,
183859
+ getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings,
183860
+ getDefaultLibFileName: () => getDefaultLibFileName,
183861
+ getDefaultLibFilePath: () => getDefaultLibFilePath,
183862
+ getDefaultLikeExportInfo: () => getDefaultLikeExportInfo,
183863
+ getDiagnosticText: () => getDiagnosticText,
183864
+ getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan,
183865
+ getDirectoryPath: () => getDirectoryPath,
183866
+ getDirectoryToWatchFailedLookupLocation: () => getDirectoryToWatchFailedLookupLocation,
183867
+ getDirectoryToWatchFailedLookupLocationFromTypeRoot: () => getDirectoryToWatchFailedLookupLocationFromTypeRoot,
183868
+ getDocumentPositionMapper: () => getDocumentPositionMapper,
183869
+ getESModuleInterop: () => getESModuleInterop,
183870
+ getEditsForFileRename: () => getEditsForFileRename,
183871
+ getEffectiveBaseTypeNode: () => getEffectiveBaseTypeNode,
183872
+ getEffectiveConstraintOfTypeParameter: () => getEffectiveConstraintOfTypeParameter,
183873
+ getEffectiveContainerForJSDocTemplateTag: () => getEffectiveContainerForJSDocTemplateTag,
183874
+ getEffectiveImplementsTypeNodes: () => getEffectiveImplementsTypeNodes,
183875
+ getEffectiveInitializer: () => getEffectiveInitializer,
183876
+ getEffectiveJSDocHost: () => getEffectiveJSDocHost,
183877
+ getEffectiveModifierFlags: () => getEffectiveModifierFlags,
183878
+ getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => getEffectiveModifierFlagsAlwaysIncludeJSDoc,
183879
+ getEffectiveModifierFlagsNoCache: () => getEffectiveModifierFlagsNoCache,
183880
+ getEffectiveReturnTypeNode: () => getEffectiveReturnTypeNode,
183881
+ getEffectiveSetAccessorTypeAnnotationNode: () => getEffectiveSetAccessorTypeAnnotationNode,
183882
+ getEffectiveTypeAnnotationNode: () => getEffectiveTypeAnnotationNode,
183883
+ getEffectiveTypeParameterDeclarations: () => getEffectiveTypeParameterDeclarations,
183884
+ getEffectiveTypeRoots: () => getEffectiveTypeRoots,
183885
+ getElementOrPropertyAccessArgumentExpressionOrName: () => getElementOrPropertyAccessArgumentExpressionOrName,
183886
+ getElementOrPropertyAccessName: () => getElementOrPropertyAccessName,
183887
+ getElementsOfBindingOrAssignmentPattern: () => getElementsOfBindingOrAssignmentPattern,
183888
+ getEmitDeclarations: () => getEmitDeclarations,
183889
+ getEmitFlags: () => getEmitFlags,
183890
+ getEmitHelpers: () => getEmitHelpers,
183891
+ getEmitModuleDetectionKind: () => getEmitModuleDetectionKind,
183892
+ getEmitModuleKind: () => getEmitModuleKind,
183893
+ getEmitModuleResolutionKind: () => getEmitModuleResolutionKind,
183894
+ getEmitScriptTarget: () => getEmitScriptTarget,
183895
+ getEnclosingBlockScopeContainer: () => getEnclosingBlockScopeContainer,
183896
+ getEncodedSemanticClassifications: () => getEncodedSemanticClassifications,
183897
+ getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications,
183898
+ getEndLinePosition: () => getEndLinePosition,
183899
+ getEntityNameFromTypeNode: () => getEntityNameFromTypeNode,
183900
+ getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo,
183901
+ getErrorCountForSummary: () => getErrorCountForSummary,
183902
+ getErrorSpanForNode: () => getErrorSpanForNode,
183903
+ getErrorSummaryText: () => getErrorSummaryText,
183904
+ getEscapedTextOfIdentifierOrLiteral: () => getEscapedTextOfIdentifierOrLiteral,
183905
+ getEscapedTextOfJsxAttributeName: () => getEscapedTextOfJsxAttributeName,
183906
+ getEscapedTextOfJsxNamespacedName: () => getEscapedTextOfJsxNamespacedName,
183907
+ getExpandoInitializer: () => getExpandoInitializer,
183908
+ getExportAssignmentExpression: () => getExportAssignmentExpression,
183909
+ getExportInfoMap: () => getExportInfoMap,
183910
+ getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper,
183911
+ getExpressionAssociativity: () => getExpressionAssociativity,
183912
+ getExpressionPrecedence: () => getExpressionPrecedence,
183913
+ getExternalHelpersModuleName: () => getExternalHelpersModuleName,
183914
+ getExternalModuleImportEqualsDeclarationExpression: () => getExternalModuleImportEqualsDeclarationExpression,
183915
+ getExternalModuleName: () => getExternalModuleName,
183916
+ getExternalModuleNameFromDeclaration: () => getExternalModuleNameFromDeclaration,
183917
+ getExternalModuleNameFromPath: () => getExternalModuleNameFromPath,
183918
+ getExternalModuleNameLiteral: () => getExternalModuleNameLiteral,
183919
+ getExternalModuleRequireArgument: () => getExternalModuleRequireArgument,
183920
+ getFallbackOptions: () => getFallbackOptions,
183921
+ getFileEmitOutput: () => getFileEmitOutput,
183922
+ getFileMatcherPatterns: () => getFileMatcherPatterns,
183923
+ getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs,
183924
+ getFileWatcherEventKind: () => getFileWatcherEventKind,
183925
+ getFilesInErrorForSummary: () => getFilesInErrorForSummary,
183926
+ getFirstConstructorWithBody: () => getFirstConstructorWithBody,
183927
+ getFirstIdentifier: () => getFirstIdentifier,
183928
+ getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition,
183929
+ getFirstProjectOutput: () => getFirstProjectOutput,
183930
+ getFixableErrorSpanExpression: () => getFixableErrorSpanExpression,
183931
+ getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting,
183932
+ getFullWidth: () => getFullWidth,
183933
+ getFunctionFlags: () => getFunctionFlags,
183934
+ getHeritageClause: () => getHeritageClause,
183935
+ getHostSignatureFromJSDoc: () => getHostSignatureFromJSDoc,
183936
+ getIdentifierAutoGenerate: () => getIdentifierAutoGenerate,
183937
+ getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference,
183938
+ getIdentifierTypeArguments: () => getIdentifierTypeArguments,
183939
+ getImmediatelyInvokedFunctionExpression: () => getImmediatelyInvokedFunctionExpression,
183940
+ getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile,
183941
+ getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker,
183942
+ getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper,
183943
+ getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper,
183944
+ getIndentSize: () => getIndentSize,
183945
+ getIndentString: () => getIndentString,
183946
+ getInferredLibraryNameResolveFrom: () => getInferredLibraryNameResolveFrom,
183947
+ getInitializedVariables: () => getInitializedVariables,
183948
+ getInitializerOfBinaryExpression: () => getInitializerOfBinaryExpression,
183949
+ getInitializerOfBindingOrAssignmentElement: () => getInitializerOfBindingOrAssignmentElement,
183950
+ getInterfaceBaseTypeNodes: () => getInterfaceBaseTypeNodes,
183951
+ getInternalEmitFlags: () => getInternalEmitFlags,
183952
+ getInvokedExpression: () => getInvokedExpression,
183953
+ getIsolatedModules: () => getIsolatedModules,
183954
+ getJSDocAugmentsTag: () => getJSDocAugmentsTag,
183955
+ getJSDocClassTag: () => getJSDocClassTag,
183956
+ getJSDocCommentRanges: () => getJSDocCommentRanges,
183957
+ getJSDocCommentsAndTags: () => getJSDocCommentsAndTags,
183958
+ getJSDocDeprecatedTag: () => getJSDocDeprecatedTag,
183959
+ getJSDocDeprecatedTagNoCache: () => getJSDocDeprecatedTagNoCache,
183960
+ getJSDocEnumTag: () => getJSDocEnumTag,
183961
+ getJSDocHost: () => getJSDocHost,
183962
+ getJSDocImplementsTags: () => getJSDocImplementsTags,
183963
+ getJSDocOverrideTagNoCache: () => getJSDocOverrideTagNoCache,
183964
+ getJSDocParameterTags: () => getJSDocParameterTags,
183965
+ getJSDocParameterTagsNoCache: () => getJSDocParameterTagsNoCache,
183966
+ getJSDocPrivateTag: () => getJSDocPrivateTag,
183967
+ getJSDocPrivateTagNoCache: () => getJSDocPrivateTagNoCache,
183968
+ getJSDocProtectedTag: () => getJSDocProtectedTag,
183969
+ getJSDocProtectedTagNoCache: () => getJSDocProtectedTagNoCache,
183970
+ getJSDocPublicTag: () => getJSDocPublicTag,
183971
+ getJSDocPublicTagNoCache: () => getJSDocPublicTagNoCache,
183972
+ getJSDocReadonlyTag: () => getJSDocReadonlyTag,
183973
+ getJSDocReadonlyTagNoCache: () => getJSDocReadonlyTagNoCache,
183974
+ getJSDocReturnTag: () => getJSDocReturnTag,
183975
+ getJSDocReturnType: () => getJSDocReturnType,
183976
+ getJSDocRoot: () => getJSDocRoot,
183977
+ getJSDocSatisfiesExpressionType: () => getJSDocSatisfiesExpressionType,
183978
+ getJSDocSatisfiesTag: () => getJSDocSatisfiesTag,
183979
+ getJSDocTags: () => getJSDocTags,
183980
+ getJSDocTagsNoCache: () => getJSDocTagsNoCache,
183981
+ getJSDocTemplateTag: () => getJSDocTemplateTag,
183982
+ getJSDocThisTag: () => getJSDocThisTag,
183983
+ getJSDocType: () => getJSDocType,
183984
+ getJSDocTypeAliasName: () => getJSDocTypeAliasName,
183985
+ getJSDocTypeAssertionType: () => getJSDocTypeAssertionType,
183986
+ getJSDocTypeParameterDeclarations: () => getJSDocTypeParameterDeclarations,
183987
+ getJSDocTypeParameterTags: () => getJSDocTypeParameterTags,
183988
+ getJSDocTypeParameterTagsNoCache: () => getJSDocTypeParameterTagsNoCache,
183989
+ getJSDocTypeTag: () => getJSDocTypeTag,
183990
+ getJSXImplicitImportBase: () => getJSXImplicitImportBase,
183991
+ getJSXRuntimeImport: () => getJSXRuntimeImport,
183992
+ getJSXTransformEnabled: () => getJSXTransformEnabled,
183993
+ getKeyForCompilerOptions: () => getKeyForCompilerOptions,
183994
+ getLanguageVariant: () => getLanguageVariant,
183995
+ getLastChild: () => getLastChild,
183996
+ getLeadingCommentRanges: () => getLeadingCommentRanges,
183997
+ getLeadingCommentRangesOfNode: () => getLeadingCommentRangesOfNode,
183998
+ getLeftmostAccessExpression: () => getLeftmostAccessExpression,
183999
+ getLeftmostExpression: () => getLeftmostExpression,
184000
+ getLineAndCharacterOfPosition: () => getLineAndCharacterOfPosition,
184001
+ getLineInfo: () => getLineInfo,
184002
+ getLineOfLocalPosition: () => getLineOfLocalPosition,
184003
+ getLineOfLocalPositionFromLineMap: () => getLineOfLocalPositionFromLineMap,
184004
+ getLineStartPositionForPosition: () => getLineStartPositionForPosition,
184005
+ getLineStarts: () => getLineStarts,
184006
+ getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => getLinesBetweenPositionAndNextNonWhitespaceCharacter,
184007
+ getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter,
184008
+ getLinesBetweenPositions: () => getLinesBetweenPositions,
184009
+ getLinesBetweenRangeEndAndRangeStart: () => getLinesBetweenRangeEndAndRangeStart,
184010
+ getLinesBetweenRangeEndPositions: () => getLinesBetweenRangeEndPositions,
184011
+ getLiteralText: () => getLiteralText,
184012
+ getLocalNameForExternalImport: () => getLocalNameForExternalImport,
184013
+ getLocalSymbolForExportDefault: () => getLocalSymbolForExportDefault,
184014
+ getLocaleSpecificMessage: () => getLocaleSpecificMessage,
184015
+ getLocaleTimeString: () => getLocaleTimeString,
184016
+ getMappedContextSpan: () => getMappedContextSpan,
184017
+ getMappedDocumentSpan: () => getMappedDocumentSpan,
184018
+ getMappedLocation: () => getMappedLocation,
184019
+ getMatchedFileSpec: () => getMatchedFileSpec,
184020
+ getMatchedIncludeSpec: () => getMatchedIncludeSpec,
184021
+ getMeaningFromDeclaration: () => getMeaningFromDeclaration,
184022
+ getMeaningFromLocation: () => getMeaningFromLocation,
184023
+ getMembersOfDeclaration: () => getMembersOfDeclaration,
184024
+ getModeForFileReference: () => getModeForFileReference,
184025
+ getModeForResolutionAtIndex: () => getModeForResolutionAtIndex,
184026
+ getModeForUsageLocation: () => getModeForUsageLocation,
184027
+ getModifiedTime: () => getModifiedTime,
184028
+ getModifiers: () => getModifiers,
184029
+ getModuleInstanceState: () => getModuleInstanceState,
184030
+ getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt,
184031
+ getModuleSpecifierEndingPreference: () => getModuleSpecifierEndingPreference,
184032
+ getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost,
184033
+ getNameForExportedSymbol: () => getNameForExportedSymbol,
184034
+ getNameFromIndexInfo: () => getNameFromIndexInfo,
184035
+ getNameFromPropertyName: () => getNameFromPropertyName,
184036
+ getNameOfAccessExpression: () => getNameOfAccessExpression,
184037
+ getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue,
184038
+ getNameOfDeclaration: () => getNameOfDeclaration,
184039
+ getNameOfExpando: () => getNameOfExpando,
184040
+ getNameOfJSDocTypedef: () => getNameOfJSDocTypedef,
184041
+ getNameOrArgument: () => getNameOrArgument,
184042
+ getNameTable: () => getNameTable,
184043
+ getNamesForExportedSymbol: () => getNamesForExportedSymbol,
184044
+ getNamespaceDeclarationNode: () => getNamespaceDeclarationNode,
184045
+ getNewLineCharacter: () => getNewLineCharacter,
184046
+ getNewLineKind: () => getNewLineKind,
184047
+ getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost,
184048
+ getNewTargetContainer: () => getNewTargetContainer,
184049
+ getNextJSDocCommentLocation: () => getNextJSDocCommentLocation,
184050
+ getNodeForGeneratedName: () => getNodeForGeneratedName,
184051
+ getNodeId: () => getNodeId,
184052
+ getNodeKind: () => getNodeKind,
184053
+ getNodeModifiers: () => getNodeModifiers,
184054
+ getNodeModulePathParts: () => getNodeModulePathParts,
184055
+ getNonAssignedNameOfDeclaration: () => getNonAssignedNameOfDeclaration,
184056
+ getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment,
184057
+ getNonAugmentationDeclaration: () => getNonAugmentationDeclaration,
184058
+ getNonDecoratorTokenPosOfNode: () => getNonDecoratorTokenPosOfNode,
184059
+ getNormalizedAbsolutePath: () => getNormalizedAbsolutePath,
184060
+ getNormalizedAbsolutePathWithoutRoot: () => getNormalizedAbsolutePathWithoutRoot,
184061
+ getNormalizedPathComponents: () => getNormalizedPathComponents,
184062
+ getObjectFlags: () => getObjectFlags,
184063
+ getOperator: () => getOperator,
184064
+ getOperatorAssociativity: () => getOperatorAssociativity,
184065
+ getOperatorPrecedence: () => getOperatorPrecedence,
184066
+ getOptionFromName: () => getOptionFromName,
184067
+ getOptionsForLibraryResolution: () => getOptionsForLibraryResolution,
184068
+ getOptionsNameMap: () => getOptionsNameMap,
184069
+ getOrCreateEmitNode: () => getOrCreateEmitNode,
184070
+ getOrCreateExternalHelpersModuleNameIfNeeded: () => getOrCreateExternalHelpersModuleNameIfNeeded,
184071
+ getOrUpdate: () => getOrUpdate,
184072
+ getOriginalNode: () => getOriginalNode,
184073
+ getOriginalNodeId: () => getOriginalNodeId,
184074
+ getOriginalSourceFile: () => getOriginalSourceFile,
184075
+ getOutputDeclarationFileName: () => getOutputDeclarationFileName,
184076
+ getOutputExtension: () => getOutputExtension,
184077
+ getOutputFileNames: () => getOutputFileNames,
184078
+ getOutputPathsFor: () => getOutputPathsFor,
184079
+ getOutputPathsForBundle: () => getOutputPathsForBundle,
184080
+ getOwnEmitOutputFilePath: () => getOwnEmitOutputFilePath,
184081
+ getOwnKeys: () => getOwnKeys,
184082
+ getOwnValues: () => getOwnValues,
184083
+ getPackageJsonInfo: () => getPackageJsonInfo,
184084
+ getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths,
184085
+ getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile,
184086
+ getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName,
184087
+ getPackageScopeForPath: () => getPackageScopeForPath,
184088
+ getParameterSymbolFromJSDoc: () => getParameterSymbolFromJSDoc,
184089
+ getParameterTypeNode: () => getParameterTypeNode,
184090
+ getParentNodeInSpan: () => getParentNodeInSpan,
184091
+ getParseTreeNode: () => getParseTreeNode,
184092
+ getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile,
184093
+ getPathComponents: () => getPathComponents,
184094
+ getPathComponentsRelativeTo: () => getPathComponentsRelativeTo,
184095
+ getPathFromPathComponents: () => getPathFromPathComponents,
184096
+ getPathUpdater: () => getPathUpdater,
184097
+ getPathsBasePath: () => getPathsBasePath,
184098
+ getPatternFromSpec: () => getPatternFromSpec,
184099
+ getPendingEmitKind: () => getPendingEmitKind,
184100
+ getPositionOfLineAndCharacter: () => getPositionOfLineAndCharacter,
184101
+ getPossibleGenericSignatures: () => getPossibleGenericSignatures,
184102
+ getPossibleOriginalInputExtensionForExtension: () => getPossibleOriginalInputExtensionForExtension,
184103
+ getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo,
184104
+ getPreEmitDiagnostics: () => getPreEmitDiagnostics,
184105
+ getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition,
184106
+ getPrivateIdentifier: () => getPrivateIdentifier,
184107
+ getProperties: () => getProperties,
184108
+ getProperty: () => getProperty,
184109
+ getPropertyArrayElementValue: () => getPropertyArrayElementValue,
184110
+ getPropertyAssignmentAliasLikeExpression: () => getPropertyAssignmentAliasLikeExpression,
184111
+ getPropertyNameForPropertyNameNode: () => getPropertyNameForPropertyNameNode,
184112
+ getPropertyNameForUniqueESSymbol: () => getPropertyNameForUniqueESSymbol,
184113
+ getPropertyNameOfBindingOrAssignmentElement: () => getPropertyNameOfBindingOrAssignmentElement,
184114
+ getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement,
184115
+ getPropertySymbolsFromContextualType: () => getPropertySymbolsFromContextualType,
184116
+ getQuoteFromPreference: () => getQuoteFromPreference,
184117
+ getQuotePreference: () => getQuotePreference,
184118
+ getRangesWhere: () => getRangesWhere,
184119
+ getRefactorContextSpan: () => getRefactorContextSpan,
184120
+ getReferencedFileLocation: () => getReferencedFileLocation,
184121
+ getRegexFromPattern: () => getRegexFromPattern,
184122
+ getRegularExpressionForWildcard: () => getRegularExpressionForWildcard,
184123
+ getRegularExpressionsForWildcards: () => getRegularExpressionsForWildcards,
184124
+ getRelativePathFromDirectory: () => getRelativePathFromDirectory,
184125
+ getRelativePathFromFile: () => getRelativePathFromFile,
184126
+ getRelativePathToDirectoryOrUrl: () => getRelativePathToDirectoryOrUrl,
184127
+ getRenameLocation: () => getRenameLocation,
184128
+ getReplacementSpanForContextToken: () => getReplacementSpanForContextToken,
184129
+ getResolutionDiagnostic: () => getResolutionDiagnostic,
184130
+ getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause,
184131
+ getResolveJsonModule: () => getResolveJsonModule,
184132
+ getResolvePackageJsonExports: () => getResolvePackageJsonExports,
184133
+ getResolvePackageJsonImports: () => getResolvePackageJsonImports,
184134
+ getResolvedExternalModuleName: () => getResolvedExternalModuleName,
184135
+ getResolvedModule: () => getResolvedModule,
184136
+ getResolvedTypeReferenceDirective: () => getResolvedTypeReferenceDirective,
184137
+ getRestIndicatorOfBindingOrAssignmentElement: () => getRestIndicatorOfBindingOrAssignmentElement,
184138
+ getRestParameterElementType: () => getRestParameterElementType,
184139
+ getRightMostAssignedExpression: () => getRightMostAssignedExpression,
184140
+ getRootDeclaration: () => getRootDeclaration,
184141
+ getRootDirectoryOfResolutionCache: () => getRootDirectoryOfResolutionCache,
184142
+ getRootLength: () => getRootLength,
184143
+ getRootPathSplitLength: () => getRootPathSplitLength,
184144
+ getScriptKind: () => getScriptKind,
184145
+ getScriptKindFromFileName: () => getScriptKindFromFileName,
184146
+ getScriptTargetFeatures: () => getScriptTargetFeatures,
184147
+ getSelectedEffectiveModifierFlags: () => getSelectedEffectiveModifierFlags,
184148
+ getSelectedSyntacticModifierFlags: () => getSelectedSyntacticModifierFlags,
184149
+ getSemanticClassifications: () => getSemanticClassifications,
184150
+ getSemanticJsxChildren: () => getSemanticJsxChildren,
184151
+ getSetAccessorTypeAnnotationNode: () => getSetAccessorTypeAnnotationNode,
184152
+ getSetAccessorValueParameter: () => getSetAccessorValueParameter,
184153
+ getSetExternalModuleIndicator: () => getSetExternalModuleIndicator,
184154
+ getShebang: () => getShebang,
184155
+ getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => getSingleInitializerOfVariableStatementOrPropertyDeclaration,
184156
+ getSingleVariableOfVariableStatement: () => getSingleVariableOfVariableStatement,
184157
+ getSnapshotText: () => getSnapshotText,
184158
+ getSnippetElement: () => getSnippetElement,
184159
+ getSourceFileOfModule: () => getSourceFileOfModule,
184160
+ getSourceFileOfNode: () => getSourceFileOfNode,
184161
+ getSourceFilePathInNewDir: () => getSourceFilePathInNewDir,
184162
+ getSourceFilePathInNewDirWorker: () => getSourceFilePathInNewDirWorker,
184163
+ getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText,
184164
+ getSourceFilesToEmit: () => getSourceFilesToEmit,
184165
+ getSourceMapRange: () => getSourceMapRange,
184166
+ getSourceMapper: () => getSourceMapper,
184167
+ getSourceTextOfNodeFromSourceFile: () => getSourceTextOfNodeFromSourceFile,
184168
+ getSpanOfTokenAtPosition: () => getSpanOfTokenAtPosition,
184169
+ getSpellingSuggestion: () => getSpellingSuggestion,
184170
+ getStartPositionOfLine: () => getStartPositionOfLine,
184171
+ getStartPositionOfRange: () => getStartPositionOfRange,
184172
+ getStartsOnNewLine: () => getStartsOnNewLine,
184173
+ getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock,
184174
+ getStrictOptionValue: () => getStrictOptionValue,
184175
+ getStringComparer: () => getStringComparer,
184176
+ getSuperCallFromStatement: () => getSuperCallFromStatement,
184177
+ getSuperContainer: () => getSuperContainer,
184178
+ getSupportedCodeFixes: () => getSupportedCodeFixes,
184179
+ getSupportedExtensions: () => getSupportedExtensions,
184180
+ getSupportedExtensionsWithJsonIfResolveJsonModule: () => getSupportedExtensionsWithJsonIfResolveJsonModule,
184181
+ getSwitchedType: () => getSwitchedType,
184182
+ getSymbolId: () => getSymbolId,
184183
+ getSymbolNameForPrivateIdentifier: () => getSymbolNameForPrivateIdentifier,
184184
+ getSymbolTarget: () => getSymbolTarget,
184185
+ getSyntacticClassifications: () => getSyntacticClassifications,
184186
+ getSyntacticModifierFlags: () => getSyntacticModifierFlags,
184187
+ getSyntacticModifierFlagsNoCache: () => getSyntacticModifierFlagsNoCache,
184188
+ getSynthesizedDeepClone: () => getSynthesizedDeepClone,
184189
+ getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements,
184190
+ getSynthesizedDeepClones: () => getSynthesizedDeepClones,
184191
+ getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements,
184192
+ getSyntheticLeadingComments: () => getSyntheticLeadingComments,
184193
+ getSyntheticTrailingComments: () => getSyntheticTrailingComments,
184194
+ getTargetLabel: () => getTargetLabel,
184195
+ getTargetOfBindingOrAssignmentElement: () => getTargetOfBindingOrAssignmentElement,
184196
+ getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState,
184197
+ getTextOfConstantValue: () => getTextOfConstantValue,
184198
+ getTextOfIdentifierOrLiteral: () => getTextOfIdentifierOrLiteral,
184199
+ getTextOfJSDocComment: () => getTextOfJSDocComment,
184200
+ getTextOfJsxAttributeName: () => getTextOfJsxAttributeName,
184201
+ getTextOfJsxNamespacedName: () => getTextOfJsxNamespacedName,
184202
+ getTextOfNode: () => getTextOfNode,
184203
+ getTextOfNodeFromSourceText: () => getTextOfNodeFromSourceText,
184204
+ getTextOfPropertyName: () => getTextOfPropertyName,
184205
+ getThisContainer: () => getThisContainer,
184206
+ getThisParameter: () => getThisParameter,
184207
+ getTokenAtPosition: () => getTokenAtPosition,
184208
+ getTokenPosOfNode: () => getTokenPosOfNode,
184209
+ getTokenSourceMapRange: () => getTokenSourceMapRange,
184210
+ getTouchingPropertyName: () => getTouchingPropertyName,
184211
+ getTouchingToken: () => getTouchingToken,
184212
+ getTrailingCommentRanges: () => getTrailingCommentRanges,
184213
+ getTrailingSemicolonDeferringWriter: () => getTrailingSemicolonDeferringWriter,
184214
+ getTransformFlagsSubtreeExclusions: () => getTransformFlagsSubtreeExclusions,
184215
+ getTransformers: () => getTransformers,
184216
+ getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath,
184217
+ getTsConfigObjectLiteralExpression: () => getTsConfigObjectLiteralExpression,
184218
+ getTsConfigPropArrayElementValue: () => getTsConfigPropArrayElementValue,
184219
+ getTypeAnnotationNode: () => getTypeAnnotationNode,
184220
+ getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList,
184221
+ getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport,
184222
+ getTypeNode: () => getTypeNode,
184223
+ getTypeNodeIfAccessible: () => getTypeNodeIfAccessible,
184224
+ getTypeParameterFromJsDoc: () => getTypeParameterFromJsDoc,
184225
+ getTypeParameterOwner: () => getTypeParameterOwner,
184226
+ getTypesPackageName: () => getTypesPackageName,
184227
+ getUILocale: () => getUILocale,
184228
+ getUniqueName: () => getUniqueName,
184229
+ getUniqueSymbolId: () => getUniqueSymbolId,
184230
+ getUseDefineForClassFields: () => getUseDefineForClassFields,
184231
+ getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage,
184232
+ getWatchFactory: () => getWatchFactory,
184233
+ group: () => group,
184234
+ groupBy: () => groupBy,
184235
+ guessIndentation: () => guessIndentation,
184236
+ handleNoEmitOptions: () => handleNoEmitOptions,
184237
+ hasAbstractModifier: () => hasAbstractModifier,
184238
+ hasAccessorModifier: () => hasAccessorModifier,
184239
+ hasAmbientModifier: () => hasAmbientModifier,
184240
+ hasChangesInResolutions: () => hasChangesInResolutions,
184241
+ hasChildOfKind: () => hasChildOfKind,
184242
+ hasContextSensitiveParameters: () => hasContextSensitiveParameters,
184243
+ hasDecorators: () => hasDecorators,
184244
+ hasDocComment: () => hasDocComment,
184245
+ hasDynamicName: () => hasDynamicName,
184246
+ hasEffectiveModifier: () => hasEffectiveModifier,
184247
+ hasEffectiveModifiers: () => hasEffectiveModifiers,
184248
+ hasEffectiveReadonlyModifier: () => hasEffectiveReadonlyModifier,
184249
+ hasExtension: () => hasExtension,
184250
+ hasIndexSignature: () => hasIndexSignature,
184251
+ hasInitializer: () => hasInitializer,
184252
+ hasInvalidEscape: () => hasInvalidEscape,
184253
+ hasJSDocNodes: () => hasJSDocNodes,
184254
+ hasJSDocParameterTags: () => hasJSDocParameterTags,
184255
+ hasJSFileExtension: () => hasJSFileExtension,
184256
+ hasJsonModuleEmitEnabled: () => hasJsonModuleEmitEnabled,
184257
+ hasOnlyExpressionInitializer: () => hasOnlyExpressionInitializer,
184258
+ hasOverrideModifier: () => hasOverrideModifier,
184259
+ hasPossibleExternalModuleReference: () => hasPossibleExternalModuleReference,
184260
+ hasProperty: () => hasProperty,
184261
+ hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName,
184262
+ hasQuestionToken: () => hasQuestionToken,
184263
+ hasRecordedExternalHelpers: () => hasRecordedExternalHelpers,
184264
+ hasRestParameter: () => hasRestParameter,
184265
+ hasScopeMarker: () => hasScopeMarker,
184266
+ hasStaticModifier: () => hasStaticModifier,
184267
+ hasSyntacticModifier: () => hasSyntacticModifier,
184268
+ hasSyntacticModifiers: () => hasSyntacticModifiers,
184269
+ hasTSFileExtension: () => hasTSFileExtension,
184270
+ hasTabstop: () => hasTabstop,
184271
+ hasTrailingDirectorySeparator: () => hasTrailingDirectorySeparator,
184272
+ hasType: () => hasType,
184273
+ hasTypeArguments: () => hasTypeArguments,
184274
+ hasZeroOrOneAsteriskCharacter: () => hasZeroOrOneAsteriskCharacter,
184275
+ helperString: () => helperString,
184276
+ hostGetCanonicalFileName: () => hostGetCanonicalFileName,
184277
+ hostUsesCaseSensitiveFileNames: () => hostUsesCaseSensitiveFileNames,
184278
+ idText: () => idText,
184279
+ identifierIsThisKeyword: () => identifierIsThisKeyword,
184280
+ identifierToKeywordKind: () => identifierToKeywordKind,
184281
+ identity: () => identity,
184282
+ identitySourceMapConsumer: () => identitySourceMapConsumer,
184283
+ ignoreSourceNewlines: () => ignoreSourceNewlines,
184284
+ ignoredPaths: () => ignoredPaths,
184285
+ importDefaultHelper: () => importDefaultHelper,
184286
+ importFromModuleSpecifier: () => importFromModuleSpecifier,
184287
+ importNameElisionDisabled: () => importNameElisionDisabled,
184288
+ importStarHelper: () => importStarHelper,
184289
+ indexOfAnyCharCode: () => indexOfAnyCharCode,
184290
+ indexOfNode: () => indexOfNode,
184291
+ indicesOf: () => indicesOf,
184292
+ inferredTypesContainingFile: () => inferredTypesContainingFile,
184293
+ insertImports: () => insertImports,
184294
+ insertLeadingStatement: () => insertLeadingStatement,
184295
+ insertSorted: () => insertSorted,
184296
+ insertStatementAfterCustomPrologue: () => insertStatementAfterCustomPrologue,
184297
+ insertStatementAfterStandardPrologue: () => insertStatementAfterStandardPrologue,
184298
+ insertStatementsAfterCustomPrologue: () => insertStatementsAfterCustomPrologue,
184299
+ insertStatementsAfterStandardPrologue: () => insertStatementsAfterStandardPrologue,
184300
+ intersperse: () => intersperse,
184301
+ intrinsicTagNameToString: () => intrinsicTagNameToString,
184302
+ introducesArgumentsExoticObject: () => introducesArgumentsExoticObject,
184303
+ inverseJsxOptionMap: () => inverseJsxOptionMap,
184304
+ isAbstractConstructorSymbol: () => isAbstractConstructorSymbol,
184305
+ isAbstractModifier: () => isAbstractModifier,
184306
+ isAccessExpression: () => isAccessExpression,
184307
+ isAccessibilityModifier: () => isAccessibilityModifier,
184308
+ isAccessor: () => isAccessor,
184309
+ isAccessorModifier: () => isAccessorModifier,
184310
+ isAliasSymbolDeclaration: () => isAliasSymbolDeclaration,
184311
+ isAliasableExpression: () => isAliasableExpression,
184312
+ isAmbientModule: () => isAmbientModule,
184313
+ isAmbientPropertyDeclaration: () => isAmbientPropertyDeclaration,
184314
+ isAnonymousFunctionDefinition: () => isAnonymousFunctionDefinition,
184315
+ isAnyDirectorySeparator: () => isAnyDirectorySeparator,
184316
+ isAnyImportOrBareOrAccessedRequire: () => isAnyImportOrBareOrAccessedRequire,
184317
+ isAnyImportOrReExport: () => isAnyImportOrReExport,
184318
+ isAnyImportSyntax: () => isAnyImportSyntax,
184319
+ isAnySupportedFileExtension: () => isAnySupportedFileExtension,
184320
+ isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey,
184321
+ isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess,
184322
+ isArray: () => isArray,
184323
+ isArrayBindingElement: () => isArrayBindingElement,
184324
+ isArrayBindingOrAssignmentElement: () => isArrayBindingOrAssignmentElement,
184325
+ isArrayBindingOrAssignmentPattern: () => isArrayBindingOrAssignmentPattern,
184326
+ isArrayBindingPattern: () => isArrayBindingPattern,
184327
+ isArrayLiteralExpression: () => isArrayLiteralExpression,
184328
+ isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern,
184329
+ isArrayTypeNode: () => isArrayTypeNode,
184330
+ isArrowFunction: () => isArrowFunction,
184331
+ isAsExpression: () => isAsExpression,
184332
+ isAssertClause: () => isAssertClause,
184333
+ isAssertEntry: () => isAssertEntry,
184334
+ isAssertionExpression: () => isAssertionExpression,
184335
+ isAssertionKey: () => isAssertionKey,
184336
+ isAssertsKeyword: () => isAssertsKeyword,
184337
+ isAssignmentDeclaration: () => isAssignmentDeclaration,
184338
+ isAssignmentExpression: () => isAssignmentExpression,
184339
+ isAssignmentOperator: () => isAssignmentOperator,
184340
+ isAssignmentPattern: () => isAssignmentPattern,
184341
+ isAssignmentTarget: () => isAssignmentTarget,
184342
+ isAsteriskToken: () => isAsteriskToken,
184343
+ isAsyncFunction: () => isAsyncFunction,
184344
+ isAsyncModifier: () => isAsyncModifier,
184345
+ isAutoAccessorPropertyDeclaration: () => isAutoAccessorPropertyDeclaration,
184346
+ isAwaitExpression: () => isAwaitExpression,
184347
+ isAwaitKeyword: () => isAwaitKeyword,
184348
+ isBigIntLiteral: () => isBigIntLiteral,
184349
+ isBinaryExpression: () => isBinaryExpression,
184350
+ isBinaryOperatorToken: () => isBinaryOperatorToken,
184351
+ isBindableObjectDefinePropertyCall: () => isBindableObjectDefinePropertyCall,
184352
+ isBindableStaticAccessExpression: () => isBindableStaticAccessExpression,
184353
+ isBindableStaticElementAccessExpression: () => isBindableStaticElementAccessExpression,
184354
+ isBindableStaticNameExpression: () => isBindableStaticNameExpression,
184355
+ isBindingElement: () => isBindingElement,
184356
+ isBindingElementOfBareOrAccessedRequire: () => isBindingElementOfBareOrAccessedRequire,
184357
+ isBindingName: () => isBindingName,
184358
+ isBindingOrAssignmentElement: () => isBindingOrAssignmentElement,
184359
+ isBindingOrAssignmentPattern: () => isBindingOrAssignmentPattern,
184360
+ isBindingPattern: () => isBindingPattern,
184361
+ isBlock: () => isBlock,
184362
+ isBlockOrCatchScoped: () => isBlockOrCatchScoped,
184363
+ isBlockScope: () => isBlockScope,
184364
+ isBlockScopedContainerTopLevel: () => isBlockScopedContainerTopLevel,
184365
+ isBooleanLiteral: () => isBooleanLiteral,
184366
+ isBreakOrContinueStatement: () => isBreakOrContinueStatement,
184367
+ isBreakStatement: () => isBreakStatement,
184368
+ isBuildInfoFile: () => isBuildInfoFile,
184369
+ isBuilderProgram: () => isBuilderProgram2,
184370
+ isBundle: () => isBundle,
184371
+ isBundleFileTextLike: () => isBundleFileTextLike,
184372
+ isCallChain: () => isCallChain,
184373
+ isCallExpression: () => isCallExpression,
184374
+ isCallExpressionTarget: () => isCallExpressionTarget,
184375
+ isCallLikeExpression: () => isCallLikeExpression,
184376
+ isCallOrNewExpression: () => isCallOrNewExpression,
184377
+ isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget,
184378
+ isCallSignatureDeclaration: () => isCallSignatureDeclaration,
184379
+ isCallToHelper: () => isCallToHelper,
184380
+ isCaseBlock: () => isCaseBlock,
184381
+ isCaseClause: () => isCaseClause,
184382
+ isCaseKeyword: () => isCaseKeyword,
184383
+ isCaseOrDefaultClause: () => isCaseOrDefaultClause,
184384
+ isCatchClause: () => isCatchClause,
184385
+ isCatchClauseVariableDeclaration: () => isCatchClauseVariableDeclaration,
184386
+ isCatchClauseVariableDeclarationOrBindingElement: () => isCatchClauseVariableDeclarationOrBindingElement,
184387
+ isCheckJsEnabledForFile: () => isCheckJsEnabledForFile,
184388
+ isChildOfNodeWithKind: () => isChildOfNodeWithKind,
184389
+ isCircularBuildOrder: () => isCircularBuildOrder,
184390
+ isClassDeclaration: () => isClassDeclaration,
184391
+ isClassElement: () => isClassElement,
184392
+ isClassExpression: () => isClassExpression,
184393
+ isClassLike: () => isClassLike,
184394
+ isClassMemberModifier: () => isClassMemberModifier,
184395
+ isClassOrTypeElement: () => isClassOrTypeElement,
184396
+ isClassStaticBlockDeclaration: () => isClassStaticBlockDeclaration,
184397
+ isCollapsedRange: () => isCollapsedRange,
184398
+ isColonToken: () => isColonToken,
184399
+ isCommaExpression: () => isCommaExpression,
184400
+ isCommaListExpression: () => isCommaListExpression,
184401
+ isCommaSequence: () => isCommaSequence,
184402
+ isCommaToken: () => isCommaToken,
184403
+ isComment: () => isComment,
184404
+ isCommonJsExportPropertyAssignment: () => isCommonJsExportPropertyAssignment,
184405
+ isCommonJsExportedExpression: () => isCommonJsExportedExpression,
184406
+ isCompoundAssignment: () => isCompoundAssignment,
184407
+ isComputedNonLiteralName: () => isComputedNonLiteralName,
184408
+ isComputedPropertyName: () => isComputedPropertyName,
184409
+ isConciseBody: () => isConciseBody,
184410
+ isConditionalExpression: () => isConditionalExpression,
184411
+ isConditionalTypeNode: () => isConditionalTypeNode,
184412
+ isConstTypeReference: () => isConstTypeReference,
184413
+ isConstructSignatureDeclaration: () => isConstructSignatureDeclaration,
184414
+ isConstructorDeclaration: () => isConstructorDeclaration,
184415
+ isConstructorTypeNode: () => isConstructorTypeNode,
184416
+ isContextualKeyword: () => isContextualKeyword,
184417
+ isContinueStatement: () => isContinueStatement,
184418
+ isCustomPrologue: () => isCustomPrologue,
184419
+ isDebuggerStatement: () => isDebuggerStatement,
184420
+ isDeclaration: () => isDeclaration,
184421
+ isDeclarationBindingElement: () => isDeclarationBindingElement,
184422
+ isDeclarationFileName: () => isDeclarationFileName,
184423
+ isDeclarationName: () => isDeclarationName,
184424
+ isDeclarationNameOfEnumOrNamespace: () => isDeclarationNameOfEnumOrNamespace,
184425
+ isDeclarationReadonly: () => isDeclarationReadonly,
184426
+ isDeclarationStatement: () => isDeclarationStatement,
184427
+ isDeclarationWithTypeParameterChildren: () => isDeclarationWithTypeParameterChildren,
184428
+ isDeclarationWithTypeParameters: () => isDeclarationWithTypeParameters,
184429
+ isDecorator: () => isDecorator,
184430
+ isDecoratorTarget: () => isDecoratorTarget,
184431
+ isDefaultClause: () => isDefaultClause,
184432
+ isDefaultImport: () => isDefaultImport,
184433
+ isDefaultModifier: () => isDefaultModifier,
184434
+ isDefaultedExpandoInitializer: () => isDefaultedExpandoInitializer,
184435
+ isDeleteExpression: () => isDeleteExpression,
184436
+ isDeleteTarget: () => isDeleteTarget,
184437
+ isDeprecatedDeclaration: () => isDeprecatedDeclaration,
184438
+ isDestructuringAssignment: () => isDestructuringAssignment,
184439
+ isDiagnosticWithLocation: () => isDiagnosticWithLocation,
184440
+ isDiskPathRoot: () => isDiskPathRoot,
184441
+ isDoStatement: () => isDoStatement,
184442
+ isDotDotDotToken: () => isDotDotDotToken,
184443
+ isDottedName: () => isDottedName,
184444
+ isDynamicName: () => isDynamicName,
184445
+ isESSymbolIdentifier: () => isESSymbolIdentifier,
184446
+ isEffectiveExternalModule: () => isEffectiveExternalModule,
184447
+ isEffectiveModuleDeclaration: () => isEffectiveModuleDeclaration,
184448
+ isEffectiveStrictModeSourceFile: () => isEffectiveStrictModeSourceFile,
184449
+ isElementAccessChain: () => isElementAccessChain,
184450
+ isElementAccessExpression: () => isElementAccessExpression,
184451
+ isEmittedFileOfProgram: () => isEmittedFileOfProgram,
184452
+ isEmptyArrayLiteral: () => isEmptyArrayLiteral,
184453
+ isEmptyBindingElement: () => isEmptyBindingElement,
184454
+ isEmptyBindingPattern: () => isEmptyBindingPattern,
184455
+ isEmptyObjectLiteral: () => isEmptyObjectLiteral,
184456
+ isEmptyStatement: () => isEmptyStatement,
184457
+ isEmptyStringLiteral: () => isEmptyStringLiteral,
184458
+ isEntityName: () => isEntityName,
184459
+ isEntityNameExpression: () => isEntityNameExpression,
184460
+ isEnumConst: () => isEnumConst,
184461
+ isEnumDeclaration: () => isEnumDeclaration,
184462
+ isEnumMember: () => isEnumMember,
184463
+ isEqualityOperatorKind: () => isEqualityOperatorKind,
184464
+ isEqualsGreaterThanToken: () => isEqualsGreaterThanToken,
184465
+ isExclamationToken: () => isExclamationToken,
184466
+ isExcludedFile: () => isExcludedFile,
184467
+ isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport,
184468
+ isExportAssignment: () => isExportAssignment,
184469
+ isExportDeclaration: () => isExportDeclaration,
184470
+ isExportModifier: () => isExportModifier,
184471
+ isExportName: () => isExportName,
184472
+ isExportNamespaceAsDefaultDeclaration: () => isExportNamespaceAsDefaultDeclaration,
184473
+ isExportOrDefaultModifier: () => isExportOrDefaultModifier,
184474
+ isExportSpecifier: () => isExportSpecifier,
184475
+ isExportsIdentifier: () => isExportsIdentifier,
184476
+ isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias,
184477
+ isExpression: () => isExpression,
184478
+ isExpressionNode: () => isExpressionNode,
184479
+ isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration,
184480
+ isExpressionOfOptionalChainRoot: () => isExpressionOfOptionalChainRoot,
184481
+ isExpressionStatement: () => isExpressionStatement,
184482
+ isExpressionWithTypeArguments: () => isExpressionWithTypeArguments,
184483
+ isExpressionWithTypeArgumentsInClassExtendsClause: () => isExpressionWithTypeArgumentsInClassExtendsClause,
184484
+ isExternalModule: () => isExternalModule,
184485
+ isExternalModuleAugmentation: () => isExternalModuleAugmentation,
184486
+ isExternalModuleImportEqualsDeclaration: () => isExternalModuleImportEqualsDeclaration,
184487
+ isExternalModuleIndicator: () => isExternalModuleIndicator,
184488
+ isExternalModuleNameRelative: () => isExternalModuleNameRelative,
184489
+ isExternalModuleReference: () => isExternalModuleReference,
184490
+ isExternalModuleSymbol: () => isExternalModuleSymbol,
184491
+ isExternalOrCommonJsModule: () => isExternalOrCommonJsModule,
184492
+ isFileLevelUniqueName: () => isFileLevelUniqueName,
184493
+ isFileProbablyExternalModule: () => isFileProbablyExternalModule,
184494
+ isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter,
184495
+ isFixablePromiseHandler: () => isFixablePromiseHandler,
184496
+ isForInOrOfStatement: () => isForInOrOfStatement,
184497
+ isForInStatement: () => isForInStatement,
184498
+ isForInitializer: () => isForInitializer,
184499
+ isForOfStatement: () => isForOfStatement,
184500
+ isForStatement: () => isForStatement,
184501
+ isFunctionBlock: () => isFunctionBlock,
184502
+ isFunctionBody: () => isFunctionBody,
184503
+ isFunctionDeclaration: () => isFunctionDeclaration,
184504
+ isFunctionExpression: () => isFunctionExpression,
184505
+ isFunctionExpressionOrArrowFunction: () => isFunctionExpressionOrArrowFunction,
184506
+ isFunctionLike: () => isFunctionLike,
184507
+ isFunctionLikeDeclaration: () => isFunctionLikeDeclaration,
184508
+ isFunctionLikeKind: () => isFunctionLikeKind,
184509
+ isFunctionLikeOrClassStaticBlockDeclaration: () => isFunctionLikeOrClassStaticBlockDeclaration,
184510
+ isFunctionOrConstructorTypeNode: () => isFunctionOrConstructorTypeNode,
184511
+ isFunctionOrModuleBlock: () => isFunctionOrModuleBlock,
184512
+ isFunctionSymbol: () => isFunctionSymbol,
184513
+ isFunctionTypeNode: () => isFunctionTypeNode,
184514
+ isFutureReservedKeyword: () => isFutureReservedKeyword,
184515
+ isGeneratedIdentifier: () => isGeneratedIdentifier,
184516
+ isGeneratedPrivateIdentifier: () => isGeneratedPrivateIdentifier,
184517
+ isGetAccessor: () => isGetAccessor,
184518
+ isGetAccessorDeclaration: () => isGetAccessorDeclaration,
184519
+ isGetOrSetAccessorDeclaration: () => isGetOrSetAccessorDeclaration,
184520
+ isGlobalDeclaration: () => isGlobalDeclaration,
184521
+ isGlobalScopeAugmentation: () => isGlobalScopeAugmentation,
184522
+ isGrammarError: () => isGrammarError,
184523
+ isHeritageClause: () => isHeritageClause,
184524
+ isHoistedFunction: () => isHoistedFunction,
184525
+ isHoistedVariableStatement: () => isHoistedVariableStatement,
184526
+ isIdentifier: () => isIdentifier,
184527
+ isIdentifierANonContextualKeyword: () => isIdentifierANonContextualKeyword,
184528
+ isIdentifierName: () => isIdentifierName,
184529
+ isIdentifierOrThisTypeNode: () => isIdentifierOrThisTypeNode,
184530
+ isIdentifierPart: () => isIdentifierPart,
184531
+ isIdentifierStart: () => isIdentifierStart,
184532
+ isIdentifierText: () => isIdentifierText,
184533
+ isIdentifierTypePredicate: () => isIdentifierTypePredicate,
184534
+ isIdentifierTypeReference: () => isIdentifierTypeReference,
184535
+ isIfStatement: () => isIfStatement,
184536
+ isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching,
184537
+ isImplicitGlob: () => isImplicitGlob,
184538
+ isImportCall: () => isImportCall,
184539
+ isImportClause: () => isImportClause,
184540
+ isImportDeclaration: () => isImportDeclaration,
184541
+ isImportEqualsDeclaration: () => isImportEqualsDeclaration,
184542
+ isImportKeyword: () => isImportKeyword,
184543
+ isImportMeta: () => isImportMeta,
184544
+ isImportOrExportSpecifier: () => isImportOrExportSpecifier,
184545
+ isImportOrExportSpecifierName: () => isImportOrExportSpecifierName,
184546
+ isImportSpecifier: () => isImportSpecifier,
184547
+ isImportTypeAssertionContainer: () => isImportTypeAssertionContainer,
184548
+ isImportTypeNode: () => isImportTypeNode,
184549
+ isImportableFile: () => isImportableFile,
184550
+ isInComment: () => isInComment,
184551
+ isInExpressionContext: () => isInExpressionContext,
184552
+ isInJSDoc: () => isInJSDoc,
184553
+ isInJSFile: () => isInJSFile,
184554
+ isInJSXText: () => isInJSXText,
184555
+ isInJsonFile: () => isInJsonFile,
184556
+ isInNonReferenceComment: () => isInNonReferenceComment,
184557
+ isInReferenceComment: () => isInReferenceComment,
184558
+ isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration,
184559
+ isInString: () => isInString,
184560
+ isInTemplateString: () => isInTemplateString,
184561
+ isInTopLevelContext: () => isInTopLevelContext,
184562
+ isIncrementalCompilation: () => isIncrementalCompilation,
184563
+ isIndexSignatureDeclaration: () => isIndexSignatureDeclaration,
184564
+ isIndexedAccessTypeNode: () => isIndexedAccessTypeNode,
184565
+ isInferTypeNode: () => isInferTypeNode,
184566
+ isInfinityOrNaNString: () => isInfinityOrNaNString,
184567
+ isInitializedProperty: () => isInitializedProperty,
184568
+ isInitializedVariable: () => isInitializedVariable,
184569
+ isInsideJsxElement: () => isInsideJsxElement,
184570
+ isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute,
184571
+ isInsideNodeModules: () => isInsideNodeModules,
184572
+ isInsideTemplateLiteral: () => isInsideTemplateLiteral,
184573
+ isInstantiatedModule: () => isInstantiatedModule,
184574
+ isInterfaceDeclaration: () => isInterfaceDeclaration,
184575
+ isInternalDeclaration: () => isInternalDeclaration,
184576
+ isInternalModuleImportEqualsDeclaration: () => isInternalModuleImportEqualsDeclaration,
184577
+ isInternalName: () => isInternalName,
184578
+ isIntersectionTypeNode: () => isIntersectionTypeNode,
184579
+ isIntrinsicJsxName: () => isIntrinsicJsxName,
184580
+ isIterationStatement: () => isIterationStatement,
184581
+ isJSDoc: () => isJSDoc,
184582
+ isJSDocAllType: () => isJSDocAllType,
184583
+ isJSDocAugmentsTag: () => isJSDocAugmentsTag,
184584
+ isJSDocAuthorTag: () => isJSDocAuthorTag,
184585
+ isJSDocCallbackTag: () => isJSDocCallbackTag,
184586
+ isJSDocClassTag: () => isJSDocClassTag,
184587
+ isJSDocCommentContainingNode: () => isJSDocCommentContainingNode,
184588
+ isJSDocConstructSignature: () => isJSDocConstructSignature,
184589
+ isJSDocDeprecatedTag: () => isJSDocDeprecatedTag,
184590
+ isJSDocEnumTag: () => isJSDocEnumTag,
184591
+ isJSDocFunctionType: () => isJSDocFunctionType,
184592
+ isJSDocImplementsTag: () => isJSDocImplementsTag,
184593
+ isJSDocIndexSignature: () => isJSDocIndexSignature,
184594
+ isJSDocLikeText: () => isJSDocLikeText,
184595
+ isJSDocLink: () => isJSDocLink,
184596
+ isJSDocLinkCode: () => isJSDocLinkCode,
184597
+ isJSDocLinkLike: () => isJSDocLinkLike,
184598
+ isJSDocLinkPlain: () => isJSDocLinkPlain,
184599
+ isJSDocMemberName: () => isJSDocMemberName,
184600
+ isJSDocNameReference: () => isJSDocNameReference,
184601
+ isJSDocNamepathType: () => isJSDocNamepathType,
184602
+ isJSDocNamespaceBody: () => isJSDocNamespaceBody,
184603
+ isJSDocNode: () => isJSDocNode,
184604
+ isJSDocNonNullableType: () => isJSDocNonNullableType,
184605
+ isJSDocNullableType: () => isJSDocNullableType,
184606
+ isJSDocOptionalParameter: () => isJSDocOptionalParameter,
184607
+ isJSDocOptionalType: () => isJSDocOptionalType,
184608
+ isJSDocOverloadTag: () => isJSDocOverloadTag,
184609
+ isJSDocOverrideTag: () => isJSDocOverrideTag,
184610
+ isJSDocParameterTag: () => isJSDocParameterTag,
184611
+ isJSDocPrivateTag: () => isJSDocPrivateTag,
184612
+ isJSDocPropertyLikeTag: () => isJSDocPropertyLikeTag,
184613
+ isJSDocPropertyTag: () => isJSDocPropertyTag,
184614
+ isJSDocProtectedTag: () => isJSDocProtectedTag,
184615
+ isJSDocPublicTag: () => isJSDocPublicTag,
184616
+ isJSDocReadonlyTag: () => isJSDocReadonlyTag,
184617
+ isJSDocReturnTag: () => isJSDocReturnTag,
184618
+ isJSDocSatisfiesExpression: () => isJSDocSatisfiesExpression,
184619
+ isJSDocSatisfiesTag: () => isJSDocSatisfiesTag,
184620
+ isJSDocSeeTag: () => isJSDocSeeTag,
184621
+ isJSDocSignature: () => isJSDocSignature,
184622
+ isJSDocTag: () => isJSDocTag,
184623
+ isJSDocTemplateTag: () => isJSDocTemplateTag,
184624
+ isJSDocThisTag: () => isJSDocThisTag,
184625
+ isJSDocThrowsTag: () => isJSDocThrowsTag,
184626
+ isJSDocTypeAlias: () => isJSDocTypeAlias,
184627
+ isJSDocTypeAssertion: () => isJSDocTypeAssertion,
184628
+ isJSDocTypeExpression: () => isJSDocTypeExpression,
184629
+ isJSDocTypeLiteral: () => isJSDocTypeLiteral,
184630
+ isJSDocTypeTag: () => isJSDocTypeTag,
184631
+ isJSDocTypedefTag: () => isJSDocTypedefTag,
184632
+ isJSDocUnknownTag: () => isJSDocUnknownTag,
184633
+ isJSDocUnknownType: () => isJSDocUnknownType,
184634
+ isJSDocVariadicType: () => isJSDocVariadicType,
184635
+ isJSXTagName: () => isJSXTagName,
184636
+ isJsonEqual: () => isJsonEqual,
184637
+ isJsonSourceFile: () => isJsonSourceFile,
184638
+ isJsxAttribute: () => isJsxAttribute,
184639
+ isJsxAttributeLike: () => isJsxAttributeLike,
184640
+ isJsxAttributeName: () => isJsxAttributeName,
184641
+ isJsxAttributes: () => isJsxAttributes,
184642
+ isJsxChild: () => isJsxChild,
184643
+ isJsxClosingElement: () => isJsxClosingElement,
184644
+ isJsxClosingFragment: () => isJsxClosingFragment,
184645
+ isJsxElement: () => isJsxElement,
184646
+ isJsxExpression: () => isJsxExpression,
184647
+ isJsxFragment: () => isJsxFragment,
184648
+ isJsxNamespacedName: () => isJsxNamespacedName,
184649
+ isJsxOpeningElement: () => isJsxOpeningElement,
184650
+ isJsxOpeningFragment: () => isJsxOpeningFragment,
184651
+ isJsxOpeningLikeElement: () => isJsxOpeningLikeElement,
184652
+ isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName,
184653
+ isJsxSelfClosingElement: () => isJsxSelfClosingElement,
184654
+ isJsxSpreadAttribute: () => isJsxSpreadAttribute,
184655
+ isJsxTagNameExpression: () => isJsxTagNameExpression,
184656
+ isJsxText: () => isJsxText,
184657
+ isJumpStatementTarget: () => isJumpStatementTarget,
184658
+ isKeyword: () => isKeyword,
184659
+ isKeywordOrPunctuation: () => isKeywordOrPunctuation,
184660
+ isKnownSymbol: () => isKnownSymbol,
184661
+ isLabelName: () => isLabelName,
184662
+ isLabelOfLabeledStatement: () => isLabelOfLabeledStatement,
184663
+ isLabeledStatement: () => isLabeledStatement,
184664
+ isLateVisibilityPaintedStatement: () => isLateVisibilityPaintedStatement,
184665
+ isLeftHandSideExpression: () => isLeftHandSideExpression,
184666
+ isLeftHandSideOfAssignment: () => isLeftHandSideOfAssignment,
184667
+ isLet: () => isLet,
184668
+ isLineBreak: () => isLineBreak,
184669
+ isLiteralComputedPropertyDeclarationName: () => isLiteralComputedPropertyDeclarationName,
184670
+ isLiteralExpression: () => isLiteralExpression,
184671
+ isLiteralExpressionOfObject: () => isLiteralExpressionOfObject,
184672
+ isLiteralImportTypeNode: () => isLiteralImportTypeNode,
184673
+ isLiteralKind: () => isLiteralKind,
184674
+ isLiteralLikeAccess: () => isLiteralLikeAccess,
184675
+ isLiteralLikeElementAccess: () => isLiteralLikeElementAccess,
184676
+ isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess,
184677
+ isLiteralTypeLikeExpression: () => isLiteralTypeLikeExpression,
184678
+ isLiteralTypeLiteral: () => isLiteralTypeLiteral,
184679
+ isLiteralTypeNode: () => isLiteralTypeNode,
184680
+ isLocalName: () => isLocalName,
184681
+ isLogicalOperator: () => isLogicalOperator,
184682
+ isLogicalOrCoalescingAssignmentExpression: () => isLogicalOrCoalescingAssignmentExpression,
184683
+ isLogicalOrCoalescingAssignmentOperator: () => isLogicalOrCoalescingAssignmentOperator,
184684
+ isLogicalOrCoalescingBinaryExpression: () => isLogicalOrCoalescingBinaryExpression,
184685
+ isLogicalOrCoalescingBinaryOperator: () => isLogicalOrCoalescingBinaryOperator,
184686
+ isMappedTypeNode: () => isMappedTypeNode,
184687
+ isMemberName: () => isMemberName,
184688
+ isMetaProperty: () => isMetaProperty,
184689
+ isMethodDeclaration: () => isMethodDeclaration,
184690
+ isMethodOrAccessor: () => isMethodOrAccessor,
184691
+ isMethodSignature: () => isMethodSignature,
184692
+ isMinusToken: () => isMinusToken,
184693
+ isMissingDeclaration: () => isMissingDeclaration,
184694
+ isModifier: () => isModifier,
184695
+ isModifierKind: () => isModifierKind,
184696
+ isModifierLike: () => isModifierLike,
184697
+ isModuleAugmentationExternal: () => isModuleAugmentationExternal,
184698
+ isModuleBlock: () => isModuleBlock,
184699
+ isModuleBody: () => isModuleBody,
184700
+ isModuleDeclaration: () => isModuleDeclaration,
184701
+ isModuleExportsAccessExpression: () => isModuleExportsAccessExpression,
184702
+ isModuleIdentifier: () => isModuleIdentifier,
184703
+ isModuleName: () => isModuleName,
184704
+ isModuleOrEnumDeclaration: () => isModuleOrEnumDeclaration,
184705
+ isModuleReference: () => isModuleReference,
184706
+ isModuleSpecifierLike: () => isModuleSpecifierLike,
184707
+ isModuleWithStringLiteralName: () => isModuleWithStringLiteralName,
184708
+ isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration,
184709
+ isNameOfModuleDeclaration: () => isNameOfModuleDeclaration,
184710
+ isNamedClassElement: () => isNamedClassElement,
184711
+ isNamedDeclaration: () => isNamedDeclaration,
184712
+ isNamedEvaluation: () => isNamedEvaluation,
184713
+ isNamedEvaluationSource: () => isNamedEvaluationSource,
184714
+ isNamedExportBindings: () => isNamedExportBindings,
184715
+ isNamedExports: () => isNamedExports,
184716
+ isNamedImportBindings: () => isNamedImportBindings,
184717
+ isNamedImports: () => isNamedImports,
184718
+ isNamedImportsOrExports: () => isNamedImportsOrExports,
184719
+ isNamedTupleMember: () => isNamedTupleMember,
184720
+ isNamespaceBody: () => isNamespaceBody,
184721
+ isNamespaceExport: () => isNamespaceExport,
184722
+ isNamespaceExportDeclaration: () => isNamespaceExportDeclaration,
184723
+ isNamespaceImport: () => isNamespaceImport,
184724
+ isNamespaceReexportDeclaration: () => isNamespaceReexportDeclaration,
184725
+ isNewExpression: () => isNewExpression,
184726
+ isNewExpressionTarget: () => isNewExpressionTarget,
184727
+ isNightly: () => isNightly,
184728
+ isNoSubstitutionTemplateLiteral: () => isNoSubstitutionTemplateLiteral,
184729
+ isNode: () => isNode,
184730
+ isNodeArray: () => isNodeArray,
184731
+ isNodeArrayMultiLine: () => isNodeArrayMultiLine,
184732
+ isNodeDescendantOf: () => isNodeDescendantOf,
184733
+ isNodeKind: () => isNodeKind,
184734
+ isNodeLikeSystem: () => isNodeLikeSystem,
184735
+ isNodeModulesDirectory: () => isNodeModulesDirectory,
184736
+ isNodeWithPossibleHoistedDeclaration: () => isNodeWithPossibleHoistedDeclaration,
184737
+ isNonContextualKeyword: () => isNonContextualKeyword,
184738
+ isNonExportDefaultModifier: () => isNonExportDefaultModifier,
184739
+ isNonGlobalAmbientModule: () => isNonGlobalAmbientModule,
184740
+ isNonGlobalDeclaration: () => isNonGlobalDeclaration,
184741
+ isNonNullAccess: () => isNonNullAccess,
184742
+ isNonNullChain: () => isNonNullChain,
184743
+ isNonNullExpression: () => isNonNullExpression,
184744
+ isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName,
184745
+ isNotEmittedOrPartiallyEmittedNode: () => isNotEmittedOrPartiallyEmittedNode,
184746
+ isNotEmittedStatement: () => isNotEmittedStatement,
184747
+ isNullishCoalesce: () => isNullishCoalesce,
184748
+ isNumber: () => isNumber,
184749
+ isNumericLiteral: () => isNumericLiteral,
184750
+ isNumericLiteralName: () => isNumericLiteralName,
184751
+ isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName,
184752
+ isObjectBindingOrAssignmentElement: () => isObjectBindingOrAssignmentElement,
184753
+ isObjectBindingOrAssignmentPattern: () => isObjectBindingOrAssignmentPattern,
184754
+ isObjectBindingPattern: () => isObjectBindingPattern,
184755
+ isObjectLiteralElement: () => isObjectLiteralElement,
184756
+ isObjectLiteralElementLike: () => isObjectLiteralElementLike,
184757
+ isObjectLiteralExpression: () => isObjectLiteralExpression,
184758
+ isObjectLiteralMethod: () => isObjectLiteralMethod,
184759
+ isObjectLiteralOrClassExpressionMethodOrAccessor: () => isObjectLiteralOrClassExpressionMethodOrAccessor,
184760
+ isObjectTypeDeclaration: () => isObjectTypeDeclaration,
184761
+ isOctalDigit: () => isOctalDigit,
184762
+ isOmittedExpression: () => isOmittedExpression,
184763
+ isOptionalChain: () => isOptionalChain,
184764
+ isOptionalChainRoot: () => isOptionalChainRoot,
184765
+ isOptionalDeclaration: () => isOptionalDeclaration,
184766
+ isOptionalJSDocPropertyLikeTag: () => isOptionalJSDocPropertyLikeTag,
184767
+ isOptionalTypeNode: () => isOptionalTypeNode,
184768
+ isOuterExpression: () => isOuterExpression,
184769
+ isOutermostOptionalChain: () => isOutermostOptionalChain,
184770
+ isOverrideModifier: () => isOverrideModifier,
184771
+ isPackedArrayLiteral: () => isPackedArrayLiteral,
184772
+ isParameter: () => isParameter,
184773
+ isParameterDeclaration: () => isParameterDeclaration,
184774
+ isParameterOrCatchClauseVariable: () => isParameterOrCatchClauseVariable,
184775
+ isParameterPropertyDeclaration: () => isParameterPropertyDeclaration,
184776
+ isParameterPropertyModifier: () => isParameterPropertyModifier,
184777
+ isParenthesizedExpression: () => isParenthesizedExpression,
184778
+ isParenthesizedTypeNode: () => isParenthesizedTypeNode,
184779
+ isParseTreeNode: () => isParseTreeNode,
184780
+ isPartOfTypeNode: () => isPartOfTypeNode,
184781
+ isPartOfTypeQuery: () => isPartOfTypeQuery,
184782
+ isPartiallyEmittedExpression: () => isPartiallyEmittedExpression,
184783
+ isPatternMatch: () => isPatternMatch,
184784
+ isPinnedComment: () => isPinnedComment,
184785
+ isPlainJsFile: () => isPlainJsFile,
184786
+ isPlusToken: () => isPlusToken,
184787
+ isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition,
184788
+ isPostfixUnaryExpression: () => isPostfixUnaryExpression,
184789
+ isPrefixUnaryExpression: () => isPrefixUnaryExpression,
184790
+ isPrivateIdentifier: () => isPrivateIdentifier,
184791
+ isPrivateIdentifierClassElementDeclaration: () => isPrivateIdentifierClassElementDeclaration,
184792
+ isPrivateIdentifierPropertyAccessExpression: () => isPrivateIdentifierPropertyAccessExpression,
184793
+ isPrivateIdentifierSymbol: () => isPrivateIdentifierSymbol,
184794
+ isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo,
184795
+ isProgramUptoDate: () => isProgramUptoDate,
184796
+ isPrologueDirective: () => isPrologueDirective,
184797
+ isPropertyAccessChain: () => isPropertyAccessChain,
184798
+ isPropertyAccessEntityNameExpression: () => isPropertyAccessEntityNameExpression,
184799
+ isPropertyAccessExpression: () => isPropertyAccessExpression,
184800
+ isPropertyAccessOrQualifiedName: () => isPropertyAccessOrQualifiedName,
184801
+ isPropertyAccessOrQualifiedNameOrImportTypeNode: () => isPropertyAccessOrQualifiedNameOrImportTypeNode,
184802
+ isPropertyAssignment: () => isPropertyAssignment,
184803
+ isPropertyDeclaration: () => isPropertyDeclaration,
184804
+ isPropertyName: () => isPropertyName,
184805
+ isPropertyNameLiteral: () => isPropertyNameLiteral,
184806
+ isPropertySignature: () => isPropertySignature,
184807
+ isProtoSetter: () => isProtoSetter,
184808
+ isPrototypeAccess: () => isPrototypeAccess,
184809
+ isPrototypePropertyAssignment: () => isPrototypePropertyAssignment,
184810
+ isPunctuation: () => isPunctuation,
184811
+ isPushOrUnshiftIdentifier: () => isPushOrUnshiftIdentifier,
184812
+ isQualifiedName: () => isQualifiedName,
184813
+ isQuestionDotToken: () => isQuestionDotToken,
184814
+ isQuestionOrExclamationToken: () => isQuestionOrExclamationToken,
184815
+ isQuestionOrPlusOrMinusToken: () => isQuestionOrPlusOrMinusToken,
184816
+ isQuestionToken: () => isQuestionToken,
184817
+ isRawSourceMap: () => isRawSourceMap,
184818
+ isReadonlyKeyword: () => isReadonlyKeyword,
184819
+ isReadonlyKeywordOrPlusOrMinusToken: () => isReadonlyKeywordOrPlusOrMinusToken,
184820
+ isRecognizedTripleSlashComment: () => isRecognizedTripleSlashComment,
184821
+ isReferenceFileLocation: () => isReferenceFileLocation,
184822
+ isReferencedFile: () => isReferencedFile,
184823
+ isRegularExpressionLiteral: () => isRegularExpressionLiteral,
184824
+ isRequireCall: () => isRequireCall,
184825
+ isRequireVariableStatement: () => isRequireVariableStatement,
184826
+ isRestParameter: () => isRestParameter,
184827
+ isRestTypeNode: () => isRestTypeNode,
184828
+ isReturnStatement: () => isReturnStatement,
184829
+ isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler,
184830
+ isRightSideOfAccessExpression: () => isRightSideOfAccessExpression,
184831
+ isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess,
184832
+ isRightSideOfQualifiedName: () => isRightSideOfQualifiedName,
184833
+ isRightSideOfQualifiedNameOrPropertyAccess: () => isRightSideOfQualifiedNameOrPropertyAccess,
184834
+ isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName,
184835
+ isRootedDiskPath: () => isRootedDiskPath,
184836
+ isSameEntityName: () => isSameEntityName,
184837
+ isSatisfiesExpression: () => isSatisfiesExpression,
184838
+ isScopeMarker: () => isScopeMarker,
184839
+ isSemicolonClassElement: () => isSemicolonClassElement,
184840
+ isSetAccessor: () => isSetAccessor,
184841
+ isSetAccessorDeclaration: () => isSetAccessorDeclaration,
184842
+ isShebangTrivia: () => isShebangTrivia,
184843
+ isShorthandAmbientModuleSymbol: () => isShorthandAmbientModuleSymbol,
184844
+ isShorthandPropertyAssignment: () => isShorthandPropertyAssignment,
184845
+ isSignedNumericLiteral: () => isSignedNumericLiteral,
184846
+ isSimpleCopiableExpression: () => isSimpleCopiableExpression,
184847
+ isSimpleInlineableExpression: () => isSimpleInlineableExpression,
184848
+ isSingleOrDoubleQuote: () => isSingleOrDoubleQuote,
184849
+ isSourceFile: () => isSourceFile,
184850
+ isSourceFileFromLibrary: () => isSourceFileFromLibrary,
184851
+ isSourceFileJS: () => isSourceFileJS,
184852
+ isSourceFileNotJS: () => isSourceFileNotJS,
184853
+ isSourceFileNotJson: () => isSourceFileNotJson,
184854
+ isSourceMapping: () => isSourceMapping,
184855
+ isSpecialPropertyDeclaration: () => isSpecialPropertyDeclaration,
184856
+ isSpreadAssignment: () => isSpreadAssignment,
184857
+ isSpreadElement: () => isSpreadElement,
184858
+ isStatement: () => isStatement,
184859
+ isStatementButNotDeclaration: () => isStatementButNotDeclaration,
184860
+ isStatementOrBlock: () => isStatementOrBlock,
184861
+ isStatementWithLocals: () => isStatementWithLocals,
184862
+ isStatic: () => isStatic,
184863
+ isStaticModifier: () => isStaticModifier,
184864
+ isString: () => isString,
184865
+ isStringAKeyword: () => isStringAKeyword,
184866
+ isStringANonContextualKeyword: () => isStringANonContextualKeyword,
184867
+ isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection,
184868
+ isStringDoubleQuoted: () => isStringDoubleQuoted,
184869
+ isStringLiteral: () => isStringLiteral,
184870
+ isStringLiteralLike: () => isStringLiteralLike,
184871
+ isStringLiteralOrJsxExpression: () => isStringLiteralOrJsxExpression,
184872
+ isStringLiteralOrTemplate: () => isStringLiteralOrTemplate,
184873
+ isStringOrNumericLiteralLike: () => isStringOrNumericLiteralLike,
184874
+ isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral,
184875
+ isStringTextContainingNode: () => isStringTextContainingNode,
184876
+ isSuperCall: () => isSuperCall,
184877
+ isSuperKeyword: () => isSuperKeyword,
184878
+ isSuperOrSuperProperty: () => isSuperOrSuperProperty,
184879
+ isSuperProperty: () => isSuperProperty,
184880
+ isSupportedSourceFileName: () => isSupportedSourceFileName,
184881
+ isSwitchStatement: () => isSwitchStatement,
184882
+ isSyntaxList: () => isSyntaxList,
184883
+ isSyntheticExpression: () => isSyntheticExpression,
184884
+ isSyntheticReference: () => isSyntheticReference,
184885
+ isTagName: () => isTagName,
184886
+ isTaggedTemplateExpression: () => isTaggedTemplateExpression,
184887
+ isTaggedTemplateTag: () => isTaggedTemplateTag,
184888
+ isTemplateExpression: () => isTemplateExpression,
184889
+ isTemplateHead: () => isTemplateHead,
184890
+ isTemplateLiteral: () => isTemplateLiteral,
184891
+ isTemplateLiteralKind: () => isTemplateLiteralKind,
184892
+ isTemplateLiteralToken: () => isTemplateLiteralToken,
184893
+ isTemplateLiteralTypeNode: () => isTemplateLiteralTypeNode,
184894
+ isTemplateLiteralTypeSpan: () => isTemplateLiteralTypeSpan,
184895
+ isTemplateMiddle: () => isTemplateMiddle,
184896
+ isTemplateMiddleOrTemplateTail: () => isTemplateMiddleOrTemplateTail,
184897
+ isTemplateSpan: () => isTemplateSpan,
184898
+ isTemplateTail: () => isTemplateTail,
184899
+ isTextWhiteSpaceLike: () => isTextWhiteSpaceLike,
184900
+ isThis: () => isThis,
184901
+ isThisContainerOrFunctionBlock: () => isThisContainerOrFunctionBlock,
184902
+ isThisIdentifier: () => isThisIdentifier,
184903
+ isThisInTypeQuery: () => isThisInTypeQuery,
184904
+ isThisInitializedDeclaration: () => isThisInitializedDeclaration,
184905
+ isThisInitializedObjectBindingExpression: () => isThisInitializedObjectBindingExpression,
184906
+ isThisProperty: () => isThisProperty,
184907
+ isThisTypeNode: () => isThisTypeNode,
184908
+ isThisTypeParameter: () => isThisTypeParameter,
184909
+ isThisTypePredicate: () => isThisTypePredicate,
184910
+ isThrowStatement: () => isThrowStatement,
184911
+ isToken: () => isToken,
184912
+ isTokenKind: () => isTokenKind,
184913
+ isTraceEnabled: () => isTraceEnabled,
184914
+ isTransientSymbol: () => isTransientSymbol,
184915
+ isTrivia: () => isTrivia,
184916
+ isTryStatement: () => isTryStatement,
184917
+ isTupleTypeNode: () => isTupleTypeNode,
184918
+ isTypeAlias: () => isTypeAlias,
184919
+ isTypeAliasDeclaration: () => isTypeAliasDeclaration,
184920
+ isTypeAssertionExpression: () => isTypeAssertionExpression,
184921
+ isTypeDeclaration: () => isTypeDeclaration,
184922
+ isTypeElement: () => isTypeElement,
184923
+ isTypeKeyword: () => isTypeKeyword,
184924
+ isTypeKeywordToken: () => isTypeKeywordToken,
184925
+ isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier,
184926
+ isTypeLiteralNode: () => isTypeLiteralNode,
184927
+ isTypeNode: () => isTypeNode,
184928
+ isTypeNodeKind: () => isTypeNodeKind,
184929
+ isTypeOfExpression: () => isTypeOfExpression,
184930
+ isTypeOnlyExportDeclaration: () => isTypeOnlyExportDeclaration,
184931
+ isTypeOnlyImportDeclaration: () => isTypeOnlyImportDeclaration,
184932
+ isTypeOnlyImportOrExportDeclaration: () => isTypeOnlyImportOrExportDeclaration,
184933
+ isTypeOperatorNode: () => isTypeOperatorNode,
184934
+ isTypeParameterDeclaration: () => isTypeParameterDeclaration,
184935
+ isTypePredicateNode: () => isTypePredicateNode,
184936
+ isTypeQueryNode: () => isTypeQueryNode,
184937
+ isTypeReferenceNode: () => isTypeReferenceNode,
184938
+ isTypeReferenceType: () => isTypeReferenceType,
184939
+ isUMDExportSymbol: () => isUMDExportSymbol,
184940
+ isUnaryExpression: () => isUnaryExpression,
184941
+ isUnaryExpressionWithWrite: () => isUnaryExpressionWithWrite,
184942
+ isUnicodeIdentifierStart: () => isUnicodeIdentifierStart,
184943
+ isUnionTypeNode: () => isUnionTypeNode,
184944
+ isUnparsedNode: () => isUnparsedNode,
184945
+ isUnparsedPrepend: () => isUnparsedPrepend,
184946
+ isUnparsedSource: () => isUnparsedSource,
184947
+ isUnparsedTextLike: () => isUnparsedTextLike,
184948
+ isUrl: () => isUrl,
184949
+ isValidBigIntString: () => isValidBigIntString,
184950
+ isValidESSymbolDeclaration: () => isValidESSymbolDeclaration,
184951
+ isValidTypeOnlyAliasUseSite: () => isValidTypeOnlyAliasUseSite,
184952
+ isValueSignatureDeclaration: () => isValueSignatureDeclaration,
184953
+ isVarConst: () => isVarConst,
184954
+ isVariableDeclaration: () => isVariableDeclaration,
184955
+ isVariableDeclarationInVariableStatement: () => isVariableDeclarationInVariableStatement,
184956
+ isVariableDeclarationInitializedToBareOrAccessedRequire: () => isVariableDeclarationInitializedToBareOrAccessedRequire,
184957
+ isVariableDeclarationInitializedToRequire: () => isVariableDeclarationInitializedToRequire,
184958
+ isVariableDeclarationList: () => isVariableDeclarationList,
184959
+ isVariableLike: () => isVariableLike,
184960
+ isVariableLikeOrAccessor: () => isVariableLikeOrAccessor,
184961
+ isVariableStatement: () => isVariableStatement,
184962
+ isVoidExpression: () => isVoidExpression,
184963
+ isWatchSet: () => isWatchSet,
184964
+ isWhileStatement: () => isWhileStatement,
184965
+ isWhiteSpaceLike: () => isWhiteSpaceLike,
184966
+ isWhiteSpaceSingleLine: () => isWhiteSpaceSingleLine,
184967
+ isWithStatement: () => isWithStatement,
184968
+ isWriteAccess: () => isWriteAccess,
184969
+ isWriteOnlyAccess: () => isWriteOnlyAccess,
184970
+ isYieldExpression: () => isYieldExpression,
184971
+ jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport,
184972
+ keywordPart: () => keywordPart,
184973
+ last: () => last,
184974
+ lastOrUndefined: () => lastOrUndefined,
184975
+ length: () => length,
184976
+ libMap: () => libMap,
184977
+ libs: () => libs,
184978
+ lineBreakPart: () => lineBreakPart,
184979
+ linkNamePart: () => linkNamePart,
184980
+ linkPart: () => linkPart,
184981
+ linkTextPart: () => linkTextPart,
184982
+ listFiles: () => listFiles,
184983
+ loadModuleFromGlobalCache: () => loadModuleFromGlobalCache,
184984
+ loadWithModeAwareCache: () => loadWithModeAwareCache,
184985
+ makeIdentifierFromModuleName: () => makeIdentifierFromModuleName,
184986
+ makeImport: () => makeImport,
184987
+ makeImportIfNecessary: () => makeImportIfNecessary,
184988
+ makeStringLiteral: () => makeStringLiteral,
184989
+ mangleScopedPackageName: () => mangleScopedPackageName,
184990
+ map: () => map,
184991
+ mapAllOrFail: () => mapAllOrFail,
184992
+ mapDefined: () => mapDefined,
184993
+ mapDefinedEntries: () => mapDefinedEntries,
184994
+ mapDefinedIterator: () => mapDefinedIterator,
184995
+ mapEntries: () => mapEntries,
184996
+ mapIterator: () => mapIterator,
184997
+ mapOneOrMany: () => mapOneOrMany,
184998
+ mapToDisplayParts: () => mapToDisplayParts,
184999
+ matchFiles: () => matchFiles,
185000
+ matchPatternOrExact: () => matchPatternOrExact,
185001
+ matchedText: () => matchedText,
185002
+ matchesExclude: () => matchesExclude,
185003
+ maybeBind: () => maybeBind,
185004
+ maybeSetLocalizedDiagnosticMessages: () => maybeSetLocalizedDiagnosticMessages,
185005
+ memoize: () => memoize,
185006
+ memoizeCached: () => memoizeCached,
185007
+ memoizeOne: () => memoizeOne,
185008
+ memoizeWeak: () => memoizeWeak,
185009
+ metadataHelper: () => metadataHelper,
185010
+ min: () => min,
185011
+ minAndMax: () => minAndMax,
185012
+ missingFileModifiedTime: () => missingFileModifiedTime,
185013
+ modifierToFlag: () => modifierToFlag,
185014
+ modifiersToFlags: () => modifiersToFlags,
185015
+ moduleOptionDeclaration: () => moduleOptionDeclaration,
185016
+ moduleResolutionIsEqualTo: () => moduleResolutionIsEqualTo,
185017
+ moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter,
185018
+ moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations,
185019
+ moduleResolutionSupportsPackageJsonExportsAndImports: () => moduleResolutionSupportsPackageJsonExportsAndImports,
185020
+ moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules,
185021
+ moduleSpecifiers: () => ts_moduleSpecifiers_exports,
185022
+ moveEmitHelpers: () => moveEmitHelpers,
185023
+ moveRangeEnd: () => moveRangeEnd,
185024
+ moveRangePastDecorators: () => moveRangePastDecorators,
185025
+ moveRangePastModifiers: () => moveRangePastModifiers,
185026
+ moveRangePos: () => moveRangePos,
185027
+ moveSyntheticComments: () => moveSyntheticComments,
185028
+ mutateMap: () => mutateMap,
185029
+ mutateMapSkippingNewValues: () => mutateMapSkippingNewValues,
185030
+ needsParentheses: () => needsParentheses,
185031
+ needsScopeMarker: () => needsScopeMarker,
185032
+ newCaseClauseTracker: () => newCaseClauseTracker,
185033
+ newPrivateEnvironment: () => newPrivateEnvironment,
185034
+ noEmitNotification: () => noEmitNotification,
185035
+ noEmitSubstitution: () => noEmitSubstitution,
185036
+ noTransformers: () => noTransformers,
185037
+ noTruncationMaximumTruncationLength: () => noTruncationMaximumTruncationLength,
185038
+ nodeCanBeDecorated: () => nodeCanBeDecorated,
185039
+ nodeHasName: () => nodeHasName,
185040
+ nodeIsDecorated: () => nodeIsDecorated,
185041
+ nodeIsMissing: () => nodeIsMissing,
185042
+ nodeIsPresent: () => nodeIsPresent,
185043
+ nodeIsSynthesized: () => nodeIsSynthesized,
185044
+ nodeModuleNameResolver: () => nodeModuleNameResolver,
185045
+ nodeModulesPathPart: () => nodeModulesPathPart,
185046
+ nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver,
185047
+ nodeOrChildIsDecorated: () => nodeOrChildIsDecorated,
185048
+ nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd,
185049
+ nodePosToString: () => nodePosToString,
185050
+ nodeSeenTracker: () => nodeSeenTracker,
185051
+ nodeStartsNewLexicalEnvironment: () => nodeStartsNewLexicalEnvironment,
185052
+ nodeToDisplayParts: () => nodeToDisplayParts,
185053
+ noop: () => noop,
185054
+ noopFileWatcher: () => noopFileWatcher,
185055
+ normalizePath: () => normalizePath,
185056
+ normalizeSlashes: () => normalizeSlashes,
185057
+ not: () => not,
185058
+ notImplemented: () => notImplemented,
185059
+ notImplementedResolver: () => notImplementedResolver,
185060
+ nullNodeConverters: () => nullNodeConverters,
185061
+ nullParenthesizerRules: () => nullParenthesizerRules,
185062
+ nullTransformationContext: () => nullTransformationContext,
185063
+ objectAllocator: () => objectAllocator,
185064
+ operatorPart: () => operatorPart,
185065
+ optionDeclarations: () => optionDeclarations,
185066
+ optionMapToObject: () => optionMapToObject,
185067
+ optionsAffectingProgramStructure: () => optionsAffectingProgramStructure,
185068
+ optionsForBuild: () => optionsForBuild,
185069
+ optionsForWatch: () => optionsForWatch,
185070
+ optionsHaveChanges: () => optionsHaveChanges,
185071
+ optionsHaveModuleResolutionChanges: () => optionsHaveModuleResolutionChanges,
185072
+ or: () => or,
185073
+ orderedRemoveItem: () => orderedRemoveItem,
185074
+ orderedRemoveItemAt: () => orderedRemoveItemAt,
185075
+ outFile: () => outFile,
185076
+ packageIdToPackageName: () => packageIdToPackageName,
185077
+ packageIdToString: () => packageIdToString,
185078
+ padLeft: () => padLeft,
185079
+ padRight: () => padRight,
185080
+ paramHelper: () => paramHelper,
185081
+ parameterIsThisKeyword: () => parameterIsThisKeyword,
185082
+ parameterNamePart: () => parameterNamePart,
185083
+ parseBaseNodeFactory: () => parseBaseNodeFactory,
185084
+ parseBigInt: () => parseBigInt,
185085
+ parseBuildCommand: () => parseBuildCommand,
185086
+ parseCommandLine: () => parseCommandLine,
185087
+ parseCommandLineWorker: () => parseCommandLineWorker,
185088
+ parseConfigFileTextToJson: () => parseConfigFileTextToJson,
185089
+ parseConfigFileWithSystem: () => parseConfigFileWithSystem,
185090
+ parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike,
185091
+ parseCustomTypeOption: () => parseCustomTypeOption,
185092
+ parseIsolatedEntityName: () => parseIsolatedEntityName,
185093
+ parseIsolatedJSDocComment: () => parseIsolatedJSDocComment,
185094
+ parseJSDocTypeExpressionForTests: () => parseJSDocTypeExpressionForTests,
185095
+ parseJsonConfigFileContent: () => parseJsonConfigFileContent,
185096
+ parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent,
185097
+ parseJsonText: () => parseJsonText,
185098
+ parseListTypeOption: () => parseListTypeOption,
185099
+ parseNodeFactory: () => parseNodeFactory,
185100
+ parseNodeModuleFromPath: () => parseNodeModuleFromPath,
185101
+ parsePackageName: () => parsePackageName,
185102
+ parsePseudoBigInt: () => parsePseudoBigInt,
185103
+ parseValidBigInt: () => parseValidBigInt,
185104
+ patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory,
185105
+ pathContainsNodeModules: () => pathContainsNodeModules,
185106
+ pathIsAbsolute: () => pathIsAbsolute,
185107
+ pathIsBareSpecifier: () => pathIsBareSpecifier,
185108
+ pathIsRelative: () => pathIsRelative,
185109
+ patternText: () => patternText,
185110
+ perfLogger: () => perfLogger,
185111
+ performIncrementalCompilation: () => performIncrementalCompilation,
185112
+ performance: () => ts_performance_exports,
185113
+ plainJSErrors: () => plainJSErrors,
185114
+ positionBelongsToNode: () => positionBelongsToNode,
185115
+ positionIsASICandidate: () => positionIsASICandidate,
185116
+ positionIsSynthesized: () => positionIsSynthesized,
185117
+ positionsAreOnSameLine: () => positionsAreOnSameLine,
185118
+ preProcessFile: () => preProcessFile,
185119
+ probablyUsesSemicolons: () => probablyUsesSemicolons,
185120
+ processCommentPragmas: () => processCommentPragmas,
185121
+ processPragmasIntoFields: () => processPragmasIntoFields,
185122
+ processTaggedTemplateExpression: () => processTaggedTemplateExpression,
185123
+ programContainsEsModules: () => programContainsEsModules,
185124
+ programContainsModules: () => programContainsModules,
185125
+ projectReferenceIsEqualTo: () => projectReferenceIsEqualTo,
185126
+ propKeyHelper: () => propKeyHelper,
185127
+ propertyNamePart: () => propertyNamePart,
185128
+ pseudoBigIntToString: () => pseudoBigIntToString,
185129
+ punctuationPart: () => punctuationPart,
185130
+ pushIfUnique: () => pushIfUnique,
185131
+ quote: () => quote,
185132
+ quotePreferenceFromString: () => quotePreferenceFromString,
185133
+ rangeContainsPosition: () => rangeContainsPosition,
185134
+ rangeContainsPositionExclusive: () => rangeContainsPositionExclusive,
185135
+ rangeContainsRange: () => rangeContainsRange,
185136
+ rangeContainsRangeExclusive: () => rangeContainsRangeExclusive,
185137
+ rangeContainsStartEnd: () => rangeContainsStartEnd,
185138
+ rangeEndIsOnSameLineAsRangeStart: () => rangeEndIsOnSameLineAsRangeStart,
185139
+ rangeEndPositionsAreOnSameLine: () => rangeEndPositionsAreOnSameLine,
185140
+ rangeEquals: () => rangeEquals,
185141
+ rangeIsOnSingleLine: () => rangeIsOnSingleLine,
185142
+ rangeOfNode: () => rangeOfNode,
185143
+ rangeOfTypeParameters: () => rangeOfTypeParameters,
185144
+ rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd,
185145
+ rangeStartIsOnSameLineAsRangeEnd: () => rangeStartIsOnSameLineAsRangeEnd,
185146
+ rangeStartPositionsAreOnSameLine: () => rangeStartPositionsAreOnSameLine,
185147
+ readBuilderProgram: () => readBuilderProgram,
185148
+ readConfigFile: () => readConfigFile,
185149
+ readHelper: () => readHelper,
185150
+ readJson: () => readJson,
185151
+ readJsonConfigFile: () => readJsonConfigFile,
185152
+ readJsonOrUndefined: () => readJsonOrUndefined,
185153
+ realizeDiagnostics: () => realizeDiagnostics,
185154
+ reduceEachLeadingCommentRange: () => reduceEachLeadingCommentRange,
185155
+ reduceEachTrailingCommentRange: () => reduceEachTrailingCommentRange,
185156
+ reduceLeft: () => reduceLeft,
185157
+ reduceLeftIterator: () => reduceLeftIterator,
185158
+ reducePathComponents: () => reducePathComponents,
185159
+ refactor: () => ts_refactor_exports,
185160
+ regExpEscape: () => regExpEscape,
185161
+ relativeComplement: () => relativeComplement,
185162
+ removeAllComments: () => removeAllComments,
185163
+ removeEmitHelper: () => removeEmitHelper,
185164
+ removeExtension: () => removeExtension,
185165
+ removeFileExtension: () => removeFileExtension,
185166
+ removeIgnoredPath: () => removeIgnoredPath,
185167
+ removeMinAndVersionNumbers: () => removeMinAndVersionNumbers,
185168
+ removeOptionality: () => removeOptionality,
185169
+ removePrefix: () => removePrefix,
185170
+ removeSuffix: () => removeSuffix,
185171
+ removeTrailingDirectorySeparator: () => removeTrailingDirectorySeparator,
185172
+ repeatString: () => repeatString,
185173
+ replaceElement: () => replaceElement,
185174
+ resolutionExtensionIsTSOrJson: () => resolutionExtensionIsTSOrJson,
185175
+ resolveConfigFileProjectName: () => resolveConfigFileProjectName,
185176
+ resolveJSModule: () => resolveJSModule,
185177
+ resolveLibrary: () => resolveLibrary,
185178
+ resolveModuleName: () => resolveModuleName,
185179
+ resolveModuleNameFromCache: () => resolveModuleNameFromCache,
185180
+ resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson,
185181
+ resolvePath: () => resolvePath,
185182
+ resolveProjectReferencePath: () => resolveProjectReferencePath,
185183
+ resolveTripleslashReference: () => resolveTripleslashReference,
185184
+ resolveTypeReferenceDirective: () => resolveTypeReferenceDirective,
185185
+ resolvingEmptyArray: () => resolvingEmptyArray,
185186
+ restHelper: () => restHelper,
185187
+ returnFalse: () => returnFalse,
185188
+ returnNoopFileWatcher: () => returnNoopFileWatcher,
185189
+ returnTrue: () => returnTrue,
185190
+ returnUndefined: () => returnUndefined,
185191
+ returnsPromise: () => returnsPromise,
185192
+ runInitializersHelper: () => runInitializersHelper,
185193
+ sameFlatMap: () => sameFlatMap,
185194
+ sameMap: () => sameMap,
185195
+ sameMapping: () => sameMapping,
185196
+ scanShebangTrivia: () => scanShebangTrivia,
185197
+ scanTokenAtPosition: () => scanTokenAtPosition,
185198
+ scanner: () => scanner,
185199
+ screenStartingMessageCodes: () => screenStartingMessageCodes,
185200
+ semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations,
185201
+ serializeCompilerOptions: () => serializeCompilerOptions,
185202
+ server: () => ts_server_exports4,
185203
+ servicesVersion: () => servicesVersion,
185204
+ setCommentRange: () => setCommentRange,
185205
+ setConfigFileInOptions: () => setConfigFileInOptions,
185206
+ setConstantValue: () => setConstantValue,
185207
+ setEachParent: () => setEachParent,
185208
+ setEmitFlags: () => setEmitFlags,
185209
+ setFunctionNameHelper: () => setFunctionNameHelper,
185210
+ setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned,
185211
+ setIdentifierAutoGenerate: () => setIdentifierAutoGenerate,
185212
+ setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference,
185213
+ setIdentifierTypeArguments: () => setIdentifierTypeArguments,
185214
+ setInternalEmitFlags: () => setInternalEmitFlags,
185215
+ setLocalizedDiagnosticMessages: () => setLocalizedDiagnosticMessages,
185216
+ setModuleDefaultHelper: () => setModuleDefaultHelper,
185217
+ setNodeFlags: () => setNodeFlags,
185218
+ setObjectAllocator: () => setObjectAllocator,
185219
+ setOriginalNode: () => setOriginalNode,
185220
+ setParent: () => setParent,
185221
+ setParentRecursive: () => setParentRecursive,
185222
+ setPrivateIdentifier: () => setPrivateIdentifier,
185223
+ setResolvedModule: () => setResolvedModule,
185224
+ setResolvedTypeReferenceDirective: () => setResolvedTypeReferenceDirective,
185225
+ setSnippetElement: () => setSnippetElement,
185226
+ setSourceMapRange: () => setSourceMapRange,
185227
+ setStackTraceLimit: () => setStackTraceLimit,
185228
+ setStartsOnNewLine: () => setStartsOnNewLine,
185229
+ setSyntheticLeadingComments: () => setSyntheticLeadingComments,
185230
+ setSyntheticTrailingComments: () => setSyntheticTrailingComments,
185231
+ setSys: () => setSys,
185232
+ setSysLog: () => setSysLog,
185233
+ setTextRange: () => setTextRange,
185234
+ setTextRangeEnd: () => setTextRangeEnd,
185235
+ setTextRangePos: () => setTextRangePos,
185236
+ setTextRangePosEnd: () => setTextRangePosEnd,
185237
+ setTextRangePosWidth: () => setTextRangePosWidth,
185238
+ setTokenSourceMapRange: () => setTokenSourceMapRange,
185239
+ setTypeNode: () => setTypeNode,
185240
+ setUILocale: () => setUILocale,
185241
+ setValueDeclaration: () => setValueDeclaration,
185242
+ shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension,
185243
+ shouldPreserveConstEnums: () => shouldPreserveConstEnums,
185244
+ shouldResolveJsRequire: () => shouldResolveJsRequire,
185245
+ shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules,
185246
+ showModuleSpecifier: () => showModuleSpecifier,
185247
+ signatureHasLiteralTypes: () => signatureHasLiteralTypes,
185248
+ signatureHasRestParameter: () => signatureHasRestParameter,
185249
+ signatureToDisplayParts: () => signatureToDisplayParts,
185250
+ single: () => single,
185251
+ singleElementArray: () => singleElementArray,
185252
+ singleIterator: () => singleIterator,
185253
+ singleOrMany: () => singleOrMany,
185254
+ singleOrUndefined: () => singleOrUndefined,
185255
+ skipAlias: () => skipAlias,
185256
+ skipAssertions: () => skipAssertions,
185257
+ skipConstraint: () => skipConstraint,
185258
+ skipOuterExpressions: () => skipOuterExpressions,
185259
+ skipParentheses: () => skipParentheses,
185260
+ skipPartiallyEmittedExpressions: () => skipPartiallyEmittedExpressions,
185261
+ skipTrivia: () => skipTrivia,
185262
+ skipTypeChecking: () => skipTypeChecking,
185263
+ skipTypeParentheses: () => skipTypeParentheses,
185264
+ skipWhile: () => skipWhile,
185265
+ sliceAfter: () => sliceAfter,
185266
+ some: () => some,
185267
+ sort: () => sort,
185268
+ sortAndDeduplicate: () => sortAndDeduplicate,
185269
+ sortAndDeduplicateDiagnostics: () => sortAndDeduplicateDiagnostics,
185270
+ sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions,
185271
+ sourceFileMayBeEmitted: () => sourceFileMayBeEmitted,
185272
+ sourceMapCommentRegExp: () => sourceMapCommentRegExp,
185273
+ sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart,
185274
+ spacePart: () => spacePart,
185275
+ spanMap: () => spanMap,
185276
+ spreadArrayHelper: () => spreadArrayHelper,
185277
+ stableSort: () => stableSort,
185278
+ startEndContainsRange: () => startEndContainsRange,
185279
+ startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd,
185280
+ startOnNewLine: () => startOnNewLine,
185281
+ startTracing: () => startTracing,
185282
+ startsWith: () => startsWith,
185283
+ startsWithDirectory: () => startsWithDirectory,
185284
+ startsWithUnderscore: () => startsWithUnderscore,
185285
+ startsWithUseStrict: () => startsWithUseStrict,
185286
+ stringContains: () => stringContains,
185287
+ stringContainsAt: () => stringContainsAt,
185288
+ stringToToken: () => stringToToken,
185289
+ stripQuotes: () => stripQuotes,
185290
+ supportedDeclarationExtensions: () => supportedDeclarationExtensions,
185291
+ supportedJSExtensions: () => supportedJSExtensions,
185292
+ supportedJSExtensionsFlat: () => supportedJSExtensionsFlat,
185293
+ supportedLocaleDirectories: () => supportedLocaleDirectories,
185294
+ supportedTSExtensions: () => supportedTSExtensions,
185295
+ supportedTSExtensionsFlat: () => supportedTSExtensionsFlat,
185296
+ supportedTSImplementationExtensions: () => supportedTSImplementationExtensions,
185297
+ suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia,
185298
+ suppressLeadingTrivia: () => suppressLeadingTrivia,
185299
+ suppressTrailingTrivia: () => suppressTrailingTrivia,
185300
+ symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault,
185301
+ symbolName: () => symbolName,
185302
+ symbolNameNoDefault: () => symbolNameNoDefault,
185303
+ symbolPart: () => symbolPart,
185304
+ symbolToDisplayParts: () => symbolToDisplayParts,
185305
+ syntaxMayBeASICandidate: () => syntaxMayBeASICandidate,
185306
+ syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI,
185307
+ sys: () => sys,
185308
+ sysLog: () => sysLog,
185309
+ tagNamesAreEquivalent: () => tagNamesAreEquivalent,
185310
+ takeWhile: () => takeWhile,
185311
+ targetOptionDeclaration: () => targetOptionDeclaration,
185312
+ templateObjectHelper: () => templateObjectHelper,
185313
+ testFormatSettings: () => testFormatSettings,
185314
+ textChangeRangeIsUnchanged: () => textChangeRangeIsUnchanged,
185315
+ textChangeRangeNewSpan: () => textChangeRangeNewSpan,
185316
+ textChanges: () => ts_textChanges_exports,
185317
+ textOrKeywordPart: () => textOrKeywordPart,
185318
+ textPart: () => textPart,
185319
+ textRangeContainsPositionInclusive: () => textRangeContainsPositionInclusive,
185320
+ textSpanContainsPosition: () => textSpanContainsPosition,
185321
+ textSpanContainsTextSpan: () => textSpanContainsTextSpan,
185322
+ textSpanEnd: () => textSpanEnd,
185323
+ textSpanIntersection: () => textSpanIntersection,
185324
+ textSpanIntersectsWith: () => textSpanIntersectsWith,
185325
+ textSpanIntersectsWithPosition: () => textSpanIntersectsWithPosition,
185326
+ textSpanIntersectsWithTextSpan: () => textSpanIntersectsWithTextSpan,
185327
+ textSpanIsEmpty: () => textSpanIsEmpty,
185328
+ textSpanOverlap: () => textSpanOverlap,
185329
+ textSpanOverlapsWith: () => textSpanOverlapsWith,
185330
+ textSpansEqual: () => textSpansEqual,
185331
+ textToKeywordObj: () => textToKeywordObj,
185332
+ timestamp: () => timestamp,
185333
+ toArray: () => toArray,
185334
+ toBuilderFileEmit: () => toBuilderFileEmit,
185335
+ toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit,
185336
+ toEditorSettings: () => toEditorSettings,
185337
+ toFileNameLowerCase: () => toFileNameLowerCase,
185338
+ toLowerCase: () => toLowerCase,
185339
+ toPath: () => toPath,
185340
+ toProgramEmitPending: () => toProgramEmitPending,
185341
+ tokenIsIdentifierOrKeyword: () => tokenIsIdentifierOrKeyword,
185342
+ tokenIsIdentifierOrKeywordOrGreaterThan: () => tokenIsIdentifierOrKeywordOrGreaterThan,
185343
+ tokenToString: () => tokenToString,
185344
+ trace: () => trace,
185345
+ tracing: () => tracing,
185346
+ tracingEnabled: () => tracingEnabled,
185347
+ transform: () => transform,
185348
+ transformClassFields: () => transformClassFields,
185349
+ transformDeclarations: () => transformDeclarations,
185350
+ transformECMAScriptModule: () => transformECMAScriptModule,
185351
+ transformES2015: () => transformES2015,
185352
+ transformES2016: () => transformES2016,
185353
+ transformES2017: () => transformES2017,
185354
+ transformES2018: () => transformES2018,
185355
+ transformES2019: () => transformES2019,
185356
+ transformES2020: () => transformES2020,
185357
+ transformES2021: () => transformES2021,
185358
+ transformES5: () => transformES5,
185359
+ transformESDecorators: () => transformESDecorators,
185360
+ transformESNext: () => transformESNext,
185361
+ transformGenerators: () => transformGenerators,
185362
+ transformJsx: () => transformJsx,
185363
+ transformLegacyDecorators: () => transformLegacyDecorators,
185364
+ transformModule: () => transformModule,
185365
+ transformNodeModule: () => transformNodeModule,
185366
+ transformNodes: () => transformNodes,
185367
+ transformSystemModule: () => transformSystemModule,
185368
+ transformTypeScript: () => transformTypeScript,
185369
+ transpile: () => transpile,
185370
+ transpileModule: () => transpileModule,
185371
+ transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions,
185372
+ trimString: () => trimString,
185373
+ trimStringEnd: () => trimStringEnd,
185374
+ trimStringStart: () => trimStringStart,
185375
+ tryAddToSet: () => tryAddToSet,
185376
+ tryAndIgnoreErrors: () => tryAndIgnoreErrors,
185377
+ tryCast: () => tryCast,
185378
+ tryDirectoryExists: () => tryDirectoryExists,
185379
+ tryExtractTSExtension: () => tryExtractTSExtension,
185380
+ tryFileExists: () => tryFileExists,
185381
+ tryGetClassExtendingExpressionWithTypeArguments: () => tryGetClassExtendingExpressionWithTypeArguments,
185382
+ tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tryGetClassImplementingOrExtendingExpressionWithTypeArguments,
185383
+ tryGetDirectories: () => tryGetDirectories,
185384
+ tryGetExtensionFromPath: () => tryGetExtensionFromPath2,
185385
+ tryGetImportFromModuleSpecifier: () => tryGetImportFromModuleSpecifier,
185386
+ tryGetJSDocSatisfiesTypeNode: () => tryGetJSDocSatisfiesTypeNode,
185387
+ tryGetModuleNameFromFile: () => tryGetModuleNameFromFile,
185388
+ tryGetModuleSpecifierFromDeclaration: () => tryGetModuleSpecifierFromDeclaration,
185389
+ tryGetNativePerformanceHooks: () => tryGetNativePerformanceHooks,
185390
+ tryGetPropertyAccessOrIdentifierToString: () => tryGetPropertyAccessOrIdentifierToString,
185391
+ tryGetPropertyNameOfBindingOrAssignmentElement: () => tryGetPropertyNameOfBindingOrAssignmentElement,
185392
+ tryGetSourceMappingURL: () => tryGetSourceMappingURL,
185393
+ tryGetTextOfPropertyName: () => tryGetTextOfPropertyName,
185394
+ tryIOAndConsumeErrors: () => tryIOAndConsumeErrors,
185395
+ tryParsePattern: () => tryParsePattern,
185396
+ tryParsePatterns: () => tryParsePatterns,
185397
+ tryParseRawSourceMap: () => tryParseRawSourceMap,
185398
+ tryReadDirectory: () => tryReadDirectory,
185399
+ tryReadFile: () => tryReadFile,
185400
+ tryRemoveDirectoryPrefix: () => tryRemoveDirectoryPrefix,
185401
+ tryRemoveExtension: () => tryRemoveExtension,
185402
+ tryRemovePrefix: () => tryRemovePrefix,
185403
+ tryRemoveSuffix: () => tryRemoveSuffix,
185404
+ typeAcquisitionDeclarations: () => typeAcquisitionDeclarations,
185405
+ typeAliasNamePart: () => typeAliasNamePart,
185406
+ typeDirectiveIsEqualTo: () => typeDirectiveIsEqualTo,
185407
+ typeKeywords: () => typeKeywords,
185408
+ typeParameterNamePart: () => typeParameterNamePart,
185409
+ typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter,
185410
+ typeToDisplayParts: () => typeToDisplayParts,
185411
+ unchangedPollThresholds: () => unchangedPollThresholds,
185412
+ unchangedTextChangeRange: () => unchangedTextChangeRange,
185413
+ unescapeLeadingUnderscores: () => unescapeLeadingUnderscores,
185414
+ unmangleScopedPackageName: () => unmangleScopedPackageName,
185415
+ unorderedRemoveItem: () => unorderedRemoveItem,
185416
+ unorderedRemoveItemAt: () => unorderedRemoveItemAt,
185417
+ unreachableCodeIsError: () => unreachableCodeIsError,
185418
+ unusedLabelIsError: () => unusedLabelIsError,
185419
+ unwrapInnermostStatementOfLabel: () => unwrapInnermostStatementOfLabel,
185420
+ updateErrorForNoInputFiles: () => updateErrorForNoInputFiles,
185421
+ updateLanguageServiceSourceFile: () => updateLanguageServiceSourceFile,
185422
+ updateMissingFilePathsWatch: () => updateMissingFilePathsWatch,
185423
+ updatePackageJsonWatch: () => updatePackageJsonWatch,
185424
+ updateResolutionField: () => updateResolutionField,
185425
+ updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher,
185426
+ updateSourceFile: () => updateSourceFile,
185427
+ updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories,
185428
+ usesExtensionsOnImports: () => usesExtensionsOnImports,
185429
+ usingSingleLineStringWriter: () => usingSingleLineStringWriter,
185430
+ utf16EncodeAsString: () => utf16EncodeAsString,
185431
+ validateLocaleAndSetLanguage: () => validateLocaleAndSetLanguage,
185432
+ valuesHelper: () => valuesHelper,
185433
+ version: () => version,
185434
+ versionMajorMinor: () => versionMajorMinor,
185435
+ visitArray: () => visitArray,
185436
+ visitCommaListElements: () => visitCommaListElements,
185437
+ visitEachChild: () => visitEachChild,
185438
+ visitFunctionBody: () => visitFunctionBody,
185439
+ visitIterationBody: () => visitIterationBody,
185440
+ visitLexicalEnvironment: () => visitLexicalEnvironment,
185441
+ visitNode: () => visitNode,
185442
+ visitNodes: () => visitNodes2,
185443
+ visitParameterList: () => visitParameterList,
185444
+ walkUpBindingElementsAndPatterns: () => walkUpBindingElementsAndPatterns,
185445
+ walkUpLexicalEnvironments: () => walkUpLexicalEnvironments,
185446
+ walkUpOuterExpressions: () => walkUpOuterExpressions,
185447
+ walkUpParenthesizedExpressions: () => walkUpParenthesizedExpressions,
185448
+ walkUpParenthesizedTypes: () => walkUpParenthesizedTypes,
185449
+ walkUpParenthesizedTypesAndGetParentAndChild: () => walkUpParenthesizedTypesAndGetParentAndChild,
185450
+ whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp,
185451
+ writeCommentRange: () => writeCommentRange,
185452
+ writeFile: () => writeFile,
185453
+ writeFileEnsuringDirectories: () => writeFileEnsuringDirectories,
185454
+ zipToModeAwareCache: () => zipToModeAwareCache,
185455
+ zipWith: () => zipWith
185456
+ });
185457
+ var init_ts8 = __esm({
185458
+ "src/tsserverlibrary/_namespaces/ts.ts"() {
185459
+ "use strict";
185460
+ init_ts2();
185461
+ init_ts3();
185462
+ init_ts4();
185463
+ init_ts7();
185464
+ init_ts_server4();
183196
185465
  }
183197
185466
  });
183198
185467