@typescript-deploys/pr-build 5.3.0-pr-55739-21 → 5.3.0-pr-53714-29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/typescript.js CHANGED
@@ -3497,7 +3497,7 @@ ${lanes.join("\n")}
3497
3497
  const name = DiagnosticCategory[d.category];
3498
3498
  return lowerCase ? name.toLowerCase() : name;
3499
3499
  }
3500
- var SyntaxKind, NodeFlags, ModifierFlags, JsxFlags, RelationComparisonResult, GeneratedIdentifierFlags, TokenFlags, FlowFlags, CommentDirectiveType, OperationCanceledException, FileIncludeKind, FilePreprocessingDiagnosticsKind, EmitOnly, StructureIsReused, ExitStatus, MemberOverrideStatus, UnionReduction, ContextFlags, NodeBuilderFlags, TypeFormatFlags, SymbolFormatFlags, SymbolAccessibility, SyntheticSymbolKind, TypePredicateKind, TypeReferenceSerializationKind, SymbolFlags, EnumKind, CheckFlags, InternalSymbolName, NodeCheckFlags, TypeFlags, ObjectFlags, VarianceFlags, ElementFlags, AccessFlags, IndexFlags, JsxReferenceKind, SignatureKind, SignatureFlags, IndexKind, TypeMapKind, InferencePriority, InferenceFlags, Ternary, AssignmentDeclarationKind, DiagnosticCategory, ModuleResolutionKind, ModuleDetectionKind, WatchFileKind, WatchDirectoryKind, PollingWatchKind, ModuleKind, JsxEmit, ImportsNotUsedAsValues, NewLineKind, ScriptKind, ScriptTarget, LanguageVariant, WatchDirectoryFlags, CharacterCodes, Extension, TransformFlags, SnippetKind, EmitFlags, InternalEmitFlags, ExternalEmitHelpers, EmitHint, OuterExpressionKinds, LexicalEnvironmentFlags, BundleFileSectionKind, ListFormat, PragmaKindFlags, commentPragmas, JSDocParsingMode;
3500
+ var SyntaxKind, NodeFlags, ModifierFlags, JsxFlags, RelationComparisonResult, GeneratedIdentifierFlags, TokenFlags, FlowFlags, CommentDirectiveType, OperationCanceledException, FileIncludeKind, FilePreprocessingDiagnosticsKind, EmitOnly, StructureIsReused, ExitStatus, MemberOverrideStatus, UnionReduction, ContextFlags, NodeBuilderFlags, TypeFormatFlags, SymbolFormatFlags, SymbolAccessibility, SyntheticSymbolKind, TypePredicateKind, TypeReferenceSerializationKind, SymbolFlags, EnumKind, CheckFlags, InternalSymbolName, NodeCheckFlags, TypeFlags, ObjectFlags, VarianceFlags, ElementFlags, AccessFlags, IndexFlags, JsxReferenceKind, SignatureKind, SignatureFlags, IndexKind, TypeMapKind, InferencePriority, InferenceFlags, Ternary, AssignmentDeclarationKind, DiagnosticCategory, ModuleResolutionKind, ModuleDetectionKind, WatchFileKind, WatchDirectoryKind, PollingWatchKind, ModuleKind, JsxEmit, ImportsNotUsedAsValues, NewLineKind, ScriptKind, ScriptTarget, LanguageVariant, WatchDirectoryFlags, CharacterCodes, Extension, TransformFlags, SnippetKind, EmitFlags, InternalEmitFlags, ExternalEmitHelpers, EmitHint, OuterExpressionKinds, LexicalEnvironmentFlags, BundleFileSectionKind, ListFormat, PragmaKindFlags, commentPragmas;
3501
3501
  var init_types = __esm({
3502
3502
  "src/compiler/types.ts"() {
3503
3503
  "use strict";
@@ -5183,13 +5183,6 @@ ${lanes.join("\n")}
5183
5183
  kind: 4 /* MultiLine */
5184
5184
  }
5185
5185
  };
5186
- JSDocParsingMode = /* @__PURE__ */ ((JSDocParsingMode8) => {
5187
- JSDocParsingMode8[JSDocParsingMode8["ParseAll"] = 0] = "ParseAll";
5188
- JSDocParsingMode8[JSDocParsingMode8["ParseForTypeErrors"] = 1] = "ParseForTypeErrors";
5189
- JSDocParsingMode8[JSDocParsingMode8["ParseForTypeInfo"] = 2] = "ParseForTypeInfo";
5190
- JSDocParsingMode8[JSDocParsingMode8["ParseNone"] = 3] = "ParseNone";
5191
- return JSDocParsingMode8;
5192
- })(JSDocParsingMode || {});
5193
5186
  }
5194
5187
  });
5195
5188
 
@@ -9589,8 +9582,7 @@ ${lanes.join("\n")}
9589
9582
  var tokenFlags;
9590
9583
  var commentDirectives;
9591
9584
  var inJSDocType = 0;
9592
- var scriptKind = 0 /* Unknown */;
9593
- var jsDocParsingMode = 0 /* ParseAll */;
9585
+ var skipNonSemanticJSDoc = false;
9594
9586
  setText(text, start, length2);
9595
9587
  var scanner2 = {
9596
9588
  getTokenFullStart: () => fullStartPos,
@@ -9634,15 +9626,14 @@ ${lanes.join("\n")}
9634
9626
  setText,
9635
9627
  setScriptTarget,
9636
9628
  setLanguageVariant,
9637
- setScriptKind,
9638
- setJSDocParsingMode,
9639
9629
  setOnError,
9640
9630
  resetTokenState,
9641
9631
  setTextPos: resetTokenState,
9642
9632
  setInJSDocType,
9643
9633
  tryScan,
9644
9634
  lookAhead,
9645
- scanRange
9635
+ scanRange,
9636
+ setSkipNonSemanticJSDoc
9646
9637
  };
9647
9638
  if (Debug.isDebugging) {
9648
9639
  Object.defineProperty(scanner2, "__debugShowCurrentPositionInText", {
@@ -10430,7 +10421,7 @@ ${lanes.join("\n")}
10430
10421
  tokenFlags |= 1 /* PrecedingLineBreak */;
10431
10422
  }
10432
10423
  }
10433
- if (isJSDoc2 && shouldParseJSDoc()) {
10424
+ if (isJSDoc2 && (!skipNonSemanticJSDoc || semanticJSDocTagRegEx.test(text.slice(fullStartPos, pos)))) {
10434
10425
  tokenFlags |= 2 /* PrecedingJSDocComment */;
10435
10426
  }
10436
10427
  commentDirectives = appendIfCommentDirective(commentDirectives, text.slice(lastLineStart, pos), commentDirectiveRegExMultiLine, lastLineStart);
@@ -10689,21 +10680,6 @@ ${lanes.join("\n")}
10689
10680
  }
10690
10681
  }
10691
10682
  }
10692
- function shouldParseJSDoc() {
10693
- switch (jsDocParsingMode) {
10694
- case 0 /* ParseAll */:
10695
- return true;
10696
- case 3 /* ParseNone */:
10697
- return false;
10698
- }
10699
- if (scriptKind !== 3 /* TS */ && scriptKind !== 4 /* TSX */) {
10700
- return true;
10701
- }
10702
- if (jsDocParsingMode === 2 /* ParseForTypeInfo */) {
10703
- return false;
10704
- }
10705
- return jsDocSeeOrLink.test(text.slice(fullStartPos, pos));
10706
- }
10707
10683
  function reScanInvalidIdentifier() {
10708
10684
  Debug.assert(token === 0 /* Unknown */, "'reScanInvalidIdentifier' should only be called when the current token is 'SyntaxKind.Unknown'.");
10709
10685
  pos = tokenStart = fullStartPos;
@@ -11118,11 +11094,8 @@ ${lanes.join("\n")}
11118
11094
  function setLanguageVariant(variant) {
11119
11095
  languageVariant = variant;
11120
11096
  }
11121
- function setScriptKind(kind) {
11122
- scriptKind = kind;
11123
- }
11124
- function setJSDocParsingMode(kind) {
11125
- jsDocParsingMode = kind;
11097
+ function setSkipNonSemanticJSDoc(skip) {
11098
+ skipNonSemanticJSDoc = skip;
11126
11099
  }
11127
11100
  function resetTokenState(position) {
11128
11101
  Debug.assert(position >= 0);
@@ -11158,7 +11131,7 @@ ${lanes.join("\n")}
11158
11131
  function utf16EncodeAsString(codePoint) {
11159
11132
  return utf16EncodeAsStringWorker(codePoint);
11160
11133
  }
11161
- var textToKeywordObj, textToKeyword, textToToken, unicodeES3IdentifierStart, unicodeES3IdentifierPart, unicodeES5IdentifierStart, unicodeES5IdentifierPart, unicodeESNextIdentifierStart, unicodeESNextIdentifierPart, commentDirectiveRegExSingleLine, commentDirectiveRegExMultiLine, jsDocSeeOrLink, tokenStrings, mergeConflictMarkerLength, shebangTriviaRegex, utf16EncodeAsStringWorker;
11134
+ var textToKeywordObj, textToKeyword, textToToken, unicodeES3IdentifierStart, unicodeES3IdentifierPart, unicodeES5IdentifierStart, unicodeES5IdentifierPart, unicodeESNextIdentifierStart, unicodeESNextIdentifierPart, commentDirectiveRegExSingleLine, commentDirectiveRegExMultiLine, semanticJSDocTagRegEx, tokenStrings, mergeConflictMarkerLength, shebangTriviaRegex, utf16EncodeAsStringWorker;
11162
11135
  var init_scanner = __esm({
11163
11136
  "src/compiler/scanner.ts"() {
11164
11137
  "use strict";
@@ -11321,7 +11294,7 @@ ${lanes.join("\n")}
11321
11294
  unicodeESNextIdentifierPart = [48, 57, 65, 90, 95, 95, 97, 122, 170, 170, 181, 181, 183, 183, 186, 186, 192, 214, 216, 246, 248, 705, 710, 721, 736, 740, 748, 748, 750, 750, 768, 884, 886, 887, 890, 893, 895, 895, 902, 906, 908, 908, 910, 929, 931, 1013, 1015, 1153, 1155, 1159, 1162, 1327, 1329, 1366, 1369, 1369, 1376, 1416, 1425, 1469, 1471, 1471, 1473, 1474, 1476, 1477, 1479, 1479, 1488, 1514, 1519, 1522, 1552, 1562, 1568, 1641, 1646, 1747, 1749, 1756, 1759, 1768, 1770, 1788, 1791, 1791, 1808, 1866, 1869, 1969, 1984, 2037, 2042, 2042, 2045, 2045, 2048, 2093, 2112, 2139, 2144, 2154, 2208, 2228, 2230, 2237, 2259, 2273, 2275, 2403, 2406, 2415, 2417, 2435, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2492, 2500, 2503, 2504, 2507, 2510, 2519, 2519, 2524, 2525, 2527, 2531, 2534, 2545, 2556, 2556, 2558, 2558, 2561, 2563, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2620, 2620, 2622, 2626, 2631, 2632, 2635, 2637, 2641, 2641, 2649, 2652, 2654, 2654, 2662, 2677, 2689, 2691, 2693, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2748, 2757, 2759, 2761, 2763, 2765, 2768, 2768, 2784, 2787, 2790, 2799, 2809, 2815, 2817, 2819, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2869, 2873, 2876, 2884, 2887, 2888, 2891, 2893, 2902, 2903, 2908, 2909, 2911, 2915, 2918, 2927, 2929, 2929, 2946, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 3001, 3006, 3010, 3014, 3016, 3018, 3021, 3024, 3024, 3031, 3031, 3046, 3055, 3072, 3084, 3086, 3088, 3090, 3112, 3114, 3129, 3133, 3140, 3142, 3144, 3146, 3149, 3157, 3158, 3160, 3162, 3168, 3171, 3174, 3183, 3200, 3203, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3260, 3268, 3270, 3272, 3274, 3277, 3285, 3286, 3294, 3294, 3296, 3299, 3302, 3311, 3313, 3314, 3328, 3331, 3333, 3340, 3342, 3344, 3346, 3396, 3398, 3400, 3402, 3406, 3412, 3415, 3423, 3427, 3430, 3439, 3450, 3455, 3458, 3459, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3530, 3530, 3535, 3540, 3542, 3542, 3544, 3551, 3558, 3567, 3570, 3571, 3585, 3642, 3648, 3662, 3664, 3673, 3713, 3714, 3716, 3716, 3718, 3722, 3724, 3747, 3749, 3749, 3751, 3773, 3776, 3780, 3782, 3782, 3784, 3789, 3792, 3801, 3804, 3807, 3840, 3840, 3864, 3865, 3872, 3881, 3893, 3893, 3895, 3895, 3897, 3897, 3902, 3911, 3913, 3948, 3953, 3972, 3974, 3991, 3993, 4028, 4038, 4038, 4096, 4169, 4176, 4253, 4256, 4293, 4295, 4295, 4301, 4301, 4304, 4346, 4348, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4744, 4746, 4749, 4752, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4822, 4824, 4880, 4882, 4885, 4888, 4954, 4957, 4959, 4969, 4977, 4992, 5007, 5024, 5109, 5112, 5117, 5121, 5740, 5743, 5759, 5761, 5786, 5792, 5866, 5870, 5880, 5888, 5900, 5902, 5908, 5920, 5940, 5952, 5971, 5984, 5996, 5998, 6e3, 6002, 6003, 6016, 6099, 6103, 6103, 6108, 6109, 6112, 6121, 6155, 6157, 6160, 6169, 6176, 6264, 6272, 6314, 6320, 6389, 6400, 6430, 6432, 6443, 6448, 6459, 6470, 6509, 6512, 6516, 6528, 6571, 6576, 6601, 6608, 6618, 6656, 6683, 6688, 6750, 6752, 6780, 6783, 6793, 6800, 6809, 6823, 6823, 6832, 6845, 6912, 6987, 6992, 7001, 7019, 7027, 7040, 7155, 7168, 7223, 7232, 7241, 7245, 7293, 7296, 7304, 7312, 7354, 7357, 7359, 7376, 7378, 7380, 7418, 7424, 7673, 7675, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8255, 8256, 8276, 8276, 8305, 8305, 8319, 8319, 8336, 8348, 8400, 8412, 8417, 8417, 8421, 8432, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8472, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8505, 8508, 8511, 8517, 8521, 8526, 8526, 8544, 8584, 11264, 11310, 11312, 11358, 11360, 11492, 11499, 11507, 11520, 11557, 11559, 11559, 11565, 11565, 11568, 11623, 11631, 11631, 11647, 11670, 11680, 11686, 11688, 11694, 11696, 11702, 11704, 11710, 11712, 11718, 11720, 11726, 11728, 11734, 11736, 11742, 11744, 11775, 12293, 12295, 12321, 12335, 12337, 12341, 12344, 12348, 12353, 12438, 12441, 12447, 12449, 12538, 12540, 12543, 12549, 12591, 12593, 12686, 12704, 12730, 12784, 12799, 13312, 19893, 19968, 40943, 40960, 42124, 42192, 42237, 42240, 42508, 42512, 42539, 42560, 42607, 42612, 42621, 42623, 42737, 42775, 42783, 42786, 42888, 42891, 42943, 42946, 42950, 42999, 43047, 43072, 43123, 43136, 43205, 43216, 43225, 43232, 43255, 43259, 43259, 43261, 43309, 43312, 43347, 43360, 43388, 43392, 43456, 43471, 43481, 43488, 43518, 43520, 43574, 43584, 43597, 43600, 43609, 43616, 43638, 43642, 43714, 43739, 43741, 43744, 43759, 43762, 43766, 43777, 43782, 43785, 43790, 43793, 43798, 43808, 43814, 43816, 43822, 43824, 43866, 43868, 43879, 43888, 44010, 44012, 44013, 44016, 44025, 44032, 55203, 55216, 55238, 55243, 55291, 63744, 64109, 64112, 64217, 64256, 64262, 64275, 64279, 64285, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65024, 65039, 65056, 65071, 65075, 65076, 65101, 65103, 65136, 65140, 65142, 65276, 65296, 65305, 65313, 65338, 65343, 65343, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65536, 65547, 65549, 65574, 65576, 65594, 65596, 65597, 65599, 65613, 65616, 65629, 65664, 65786, 65856, 65908, 66045, 66045, 66176, 66204, 66208, 66256, 66272, 66272, 66304, 66335, 66349, 66378, 66384, 66426, 66432, 66461, 66464, 66499, 66504, 66511, 66513, 66517, 66560, 66717, 66720, 66729, 66736, 66771, 66776, 66811, 66816, 66855, 66864, 66915, 67072, 67382, 67392, 67413, 67424, 67431, 67584, 67589, 67592, 67592, 67594, 67637, 67639, 67640, 67644, 67644, 67647, 67669, 67680, 67702, 67712, 67742, 67808, 67826, 67828, 67829, 67840, 67861, 67872, 67897, 67968, 68023, 68030, 68031, 68096, 68099, 68101, 68102, 68108, 68115, 68117, 68119, 68121, 68149, 68152, 68154, 68159, 68159, 68192, 68220, 68224, 68252, 68288, 68295, 68297, 68326, 68352, 68405, 68416, 68437, 68448, 68466, 68480, 68497, 68608, 68680, 68736, 68786, 68800, 68850, 68864, 68903, 68912, 68921, 69376, 69404, 69415, 69415, 69424, 69456, 69600, 69622, 69632, 69702, 69734, 69743, 69759, 69818, 69840, 69864, 69872, 69881, 69888, 69940, 69942, 69951, 69956, 69958, 69968, 70003, 70006, 70006, 70016, 70084, 70089, 70092, 70096, 70106, 70108, 70108, 70144, 70161, 70163, 70199, 70206, 70206, 70272, 70278, 70280, 70280, 70282, 70285, 70287, 70301, 70303, 70312, 70320, 70378, 70384, 70393, 70400, 70403, 70405, 70412, 70415, 70416, 70419, 70440, 70442, 70448, 70450, 70451, 70453, 70457, 70459, 70468, 70471, 70472, 70475, 70477, 70480, 70480, 70487, 70487, 70493, 70499, 70502, 70508, 70512, 70516, 70656, 70730, 70736, 70745, 70750, 70751, 70784, 70853, 70855, 70855, 70864, 70873, 71040, 71093, 71096, 71104, 71128, 71133, 71168, 71232, 71236, 71236, 71248, 71257, 71296, 71352, 71360, 71369, 71424, 71450, 71453, 71467, 71472, 71481, 71680, 71738, 71840, 71913, 71935, 71935, 72096, 72103, 72106, 72151, 72154, 72161, 72163, 72164, 72192, 72254, 72263, 72263, 72272, 72345, 72349, 72349, 72384, 72440, 72704, 72712, 72714, 72758, 72760, 72768, 72784, 72793, 72818, 72847, 72850, 72871, 72873, 72886, 72960, 72966, 72968, 72969, 72971, 73014, 73018, 73018, 73020, 73021, 73023, 73031, 73040, 73049, 73056, 73061, 73063, 73064, 73066, 73102, 73104, 73105, 73107, 73112, 73120, 73129, 73440, 73462, 73728, 74649, 74752, 74862, 74880, 75075, 77824, 78894, 82944, 83526, 92160, 92728, 92736, 92766, 92768, 92777, 92880, 92909, 92912, 92916, 92928, 92982, 92992, 92995, 93008, 93017, 93027, 93047, 93053, 93071, 93760, 93823, 93952, 94026, 94031, 94087, 94095, 94111, 94176, 94177, 94179, 94179, 94208, 100343, 100352, 101106, 110592, 110878, 110928, 110930, 110948, 110951, 110960, 111355, 113664, 113770, 113776, 113788, 113792, 113800, 113808, 113817, 113821, 113822, 119141, 119145, 119149, 119154, 119163, 119170, 119173, 119179, 119210, 119213, 119362, 119364, 119808, 119892, 119894, 119964, 119966, 119967, 119970, 119970, 119973, 119974, 119977, 119980, 119982, 119993, 119995, 119995, 119997, 120003, 120005, 120069, 120071, 120074, 120077, 120084, 120086, 120092, 120094, 120121, 120123, 120126, 120128, 120132, 120134, 120134, 120138, 120144, 120146, 120485, 120488, 120512, 120514, 120538, 120540, 120570, 120572, 120596, 120598, 120628, 120630, 120654, 120656, 120686, 120688, 120712, 120714, 120744, 120746, 120770, 120772, 120779, 120782, 120831, 121344, 121398, 121403, 121452, 121461, 121461, 121476, 121476, 121499, 121503, 121505, 121519, 122880, 122886, 122888, 122904, 122907, 122913, 122915, 122916, 122918, 122922, 123136, 123180, 123184, 123197, 123200, 123209, 123214, 123214, 123584, 123641, 124928, 125124, 125136, 125142, 125184, 125259, 125264, 125273, 126464, 126467, 126469, 126495, 126497, 126498, 126500, 126500, 126503, 126503, 126505, 126514, 126516, 126519, 126521, 126521, 126523, 126523, 126530, 126530, 126535, 126535, 126537, 126537, 126539, 126539, 126541, 126543, 126545, 126546, 126548, 126548, 126551, 126551, 126553, 126553, 126555, 126555, 126557, 126557, 126559, 126559, 126561, 126562, 126564, 126564, 126567, 126570, 126572, 126578, 126580, 126583, 126585, 126588, 126590, 126590, 126592, 126601, 126603, 126619, 126625, 126627, 126629, 126633, 126635, 126651, 131072, 173782, 173824, 177972, 177984, 178205, 178208, 183969, 183984, 191456, 194560, 195101, 917760, 917999];
11322
11295
  commentDirectiveRegExSingleLine = /^\/\/\/?\s*@(ts-expect-error|ts-ignore)/;
11323
11296
  commentDirectiveRegExMultiLine = /^(?:\/|\*)*\s*@(ts-expect-error|ts-ignore)/;
11324
- jsDocSeeOrLink = /@(?:see|link)/i;
11297
+ semanticJSDocTagRegEx = /@(?:see|link)/i;
11325
11298
  tokenStrings = makeReverseMap(textToToken);
11326
11299
  mergeConflictMarkerLength = "<<<<<<<".length;
11327
11300
  shebangTriviaRegex = /^#!.*/;
@@ -28117,7 +28090,7 @@ ${lanes.join("\n")}
28117
28090
  function setExternalModuleIndicator(sourceFile) {
28118
28091
  sourceFile.externalModuleIndicator = isFileProbablyExternalModule(sourceFile);
28119
28092
  }
28120
- function createSourceFile(fileName, sourceText, languageVersionOrOptions, setParentNodes = false, scriptKind, jsDocParsingMode) {
28093
+ function createSourceFile(fileName, sourceText, languageVersionOrOptions, setParentNodes = false, scriptKind, skipNonSemanticJSDoc) {
28121
28094
  var _a, _b, _c, _d;
28122
28095
  (_a = tracing) == null ? void 0 : _a.push(
28123
28096
  tracing.Phase.Parse,
@@ -28144,7 +28117,7 @@ ${lanes.join("\n")}
28144
28117
  setParentNodes,
28145
28118
  6 /* JSON */,
28146
28119
  noop,
28147
- jsDocParsingMode
28120
+ skipNonSemanticJSDoc
28148
28121
  );
28149
28122
  } else {
28150
28123
  const setIndicator = format === void 0 ? overrideSetExternalModuleIndicator : (file) => {
@@ -28160,7 +28133,7 @@ ${lanes.join("\n")}
28160
28133
  setParentNodes,
28161
28134
  scriptKind,
28162
28135
  setIndicator,
28163
- jsDocParsingMode
28136
+ skipNonSemanticJSDoc
28164
28137
  );
28165
28138
  }
28166
28139
  (_c = perfLogger) == null ? void 0 : _c.logStopParseSourceFile();
@@ -28944,7 +28917,7 @@ ${lanes.join("\n")}
28944
28917
  var contextFlags;
28945
28918
  var topLevel = true;
28946
28919
  var parseErrorBeforeNextFinishedNode = false;
28947
- function parseSourceFile(fileName2, sourceText2, languageVersion2, syntaxCursor2, setParentNodes = false, scriptKind2, setExternalModuleIndicatorOverride, jsDocParsingMode = 0 /* ParseAll */) {
28920
+ function parseSourceFile(fileName2, sourceText2, languageVersion2, syntaxCursor2, setParentNodes = false, scriptKind2, setExternalModuleIndicatorOverride, skipNonSemanticJSDoc) {
28948
28921
  var _a;
28949
28922
  scriptKind2 = ensureScriptKind(fileName2, scriptKind2);
28950
28923
  if (scriptKind2 === 6 /* JSON */) {
@@ -28966,8 +28939,9 @@ ${lanes.join("\n")}
28966
28939
  result2.pragmas = emptyMap;
28967
28940
  return result2;
28968
28941
  }
28969
- initializeState(fileName2, sourceText2, languageVersion2, syntaxCursor2, scriptKind2, jsDocParsingMode);
28970
- const result = parseSourceFileWorker(languageVersion2, setParentNodes, scriptKind2, setExternalModuleIndicatorOverride || setExternalModuleIndicator, jsDocParsingMode);
28942
+ skipNonSemanticJSDoc = !!skipNonSemanticJSDoc && scriptKind2 !== 1 /* JS */ && scriptKind2 !== 2 /* JSX */;
28943
+ initializeState(fileName2, sourceText2, languageVersion2, syntaxCursor2, scriptKind2, skipNonSemanticJSDoc);
28944
+ const result = parseSourceFileWorker(languageVersion2, setParentNodes, scriptKind2, setExternalModuleIndicatorOverride || setExternalModuleIndicator, skipNonSemanticJSDoc);
28971
28945
  clearState();
28972
28946
  return result;
28973
28947
  }
@@ -28980,7 +28954,8 @@ ${lanes.join("\n")}
28980
28954
  /*syntaxCursor*/
28981
28955
  void 0,
28982
28956
  1 /* JS */,
28983
- 0 /* ParseAll */
28957
+ /*skipNonSemanticJSDoc*/
28958
+ false
28984
28959
  );
28985
28960
  nextToken();
28986
28961
  const entityName = parseEntityName(
@@ -28993,7 +28968,15 @@ ${lanes.join("\n")}
28993
28968
  }
28994
28969
  Parser2.parseIsolatedEntityName = parseIsolatedEntityName2;
28995
28970
  function parseJsonText2(fileName2, sourceText2, languageVersion2 = 2 /* ES2015 */, syntaxCursor2, setParentNodes = false) {
28996
- initializeState(fileName2, sourceText2, languageVersion2, syntaxCursor2, 6 /* JSON */, 0 /* ParseAll */);
28971
+ initializeState(
28972
+ fileName2,
28973
+ sourceText2,
28974
+ languageVersion2,
28975
+ syntaxCursor2,
28976
+ 6 /* JSON */,
28977
+ /*skipNonSemanticJSDoc*/
28978
+ false
28979
+ );
28997
28980
  sourceFlags = contextFlags;
28998
28981
  nextToken();
28999
28982
  const pos = getNodePos();
@@ -29074,7 +29057,7 @@ ${lanes.join("\n")}
29074
29057
  return result;
29075
29058
  }
29076
29059
  Parser2.parseJsonText = parseJsonText2;
29077
- function initializeState(_fileName, _sourceText, _languageVersion, _syntaxCursor, _scriptKind, _jsDocParsingMode) {
29060
+ function initializeState(_fileName, _sourceText, _languageVersion, _syntaxCursor, _scriptKind, _skipNonSemanticJSDoc) {
29078
29061
  NodeConstructor2 = objectAllocator.getNodeConstructor();
29079
29062
  TokenConstructor2 = objectAllocator.getTokenConstructor();
29080
29063
  IdentifierConstructor2 = objectAllocator.getIdentifierConstructor();
@@ -29110,15 +29093,13 @@ ${lanes.join("\n")}
29110
29093
  scanner2.setOnError(scanError);
29111
29094
  scanner2.setScriptTarget(languageVersion);
29112
29095
  scanner2.setLanguageVariant(languageVariant);
29113
- scanner2.setScriptKind(scriptKind);
29114
- scanner2.setJSDocParsingMode(_jsDocParsingMode);
29096
+ scanner2.setSkipNonSemanticJSDoc(_skipNonSemanticJSDoc);
29115
29097
  }
29116
29098
  function clearState() {
29117
29099
  scanner2.clearCommentDirectives();
29118
29100
  scanner2.setText("");
29119
29101
  scanner2.setOnError(void 0);
29120
- scanner2.setScriptKind(0 /* Unknown */);
29121
- scanner2.setJSDocParsingMode(0 /* ParseAll */);
29102
+ scanner2.setSkipNonSemanticJSDoc(false);
29122
29103
  sourceText = void 0;
29123
29104
  languageVersion = void 0;
29124
29105
  syntaxCursor = void 0;
@@ -29132,7 +29113,7 @@ ${lanes.join("\n")}
29132
29113
  notParenthesizedArrow = void 0;
29133
29114
  topLevel = true;
29134
29115
  }
29135
- function parseSourceFileWorker(languageVersion2, setParentNodes, scriptKind2, setExternalModuleIndicator2, jsDocParsingMode) {
29116
+ function parseSourceFileWorker(languageVersion2, setParentNodes, scriptKind2, setExternalModuleIndicator2, skipNonSemanticJSDoc) {
29136
29117
  const isDeclarationFile = isDeclarationFileName(fileName);
29137
29118
  if (isDeclarationFile) {
29138
29119
  contextFlags |= 33554432 /* Ambient */;
@@ -29151,7 +29132,7 @@ ${lanes.join("\n")}
29151
29132
  sourceFile.identifierCount = identifierCount;
29152
29133
  sourceFile.identifiers = identifiers;
29153
29134
  sourceFile.parseDiagnostics = attachFileToDiagnostics(parseDiagnostics, sourceFile);
29154
- sourceFile.jsDocParsingMode = jsDocParsingMode;
29135
+ sourceFile.skipNonSemanticJSDoc = skipNonSemanticJSDoc;
29155
29136
  if (jsDocDiagnostics) {
29156
29137
  sourceFile.jsDocDiagnostics = attachFileToDiagnostics(jsDocDiagnostics, sourceFile);
29157
29138
  }
@@ -34586,7 +34567,8 @@ ${lanes.join("\n")}
34586
34567
  /*syntaxCursor*/
34587
34568
  void 0,
34588
34569
  1 /* JS */,
34589
- 0 /* ParseAll */
34570
+ /*skipNonSemanticJSDoc*/
34571
+ false
34590
34572
  );
34591
34573
  scanner2.setText(content, start, length2);
34592
34574
  currentToken = scanner2.scan();
@@ -34651,7 +34633,8 @@ ${lanes.join("\n")}
34651
34633
  /*syntaxCursor*/
34652
34634
  void 0,
34653
34635
  1 /* JS */,
34654
- 0 /* ParseAll */
34636
+ /*skipNonSemanticJSDoc*/
34637
+ false
34655
34638
  );
34656
34639
  const jsDoc = doInsideOfContext(16777216 /* JSDoc */, () => parseJSDocCommentWorker(start, length2));
34657
34640
  const sourceFile = { languageVariant: 0 /* Standard */, text: content };
@@ -35607,7 +35590,7 @@ ${lanes.join("\n")}
35607
35590
  true,
35608
35591
  sourceFile.scriptKind,
35609
35592
  sourceFile.setExternalModuleIndicator,
35610
- sourceFile.jsDocParsingMode
35593
+ sourceFile.skipNonSemanticJSDoc
35611
35594
  );
35612
35595
  }
35613
35596
  const incrementalSourceFile = sourceFile;
@@ -35632,7 +35615,7 @@ ${lanes.join("\n")}
35632
35615
  true,
35633
35616
  sourceFile.scriptKind,
35634
35617
  sourceFile.setExternalModuleIndicator,
35635
- sourceFile.jsDocParsingMode
35618
+ sourceFile.skipNonSemanticJSDoc
35636
35619
  );
35637
35620
  result.commentDirectives = getNewCommentDirectives(
35638
35621
  sourceFile.commentDirectives,
@@ -42441,7 +42424,7 @@ ${lanes.join("\n")}
42441
42424
  case 36 /* ExclamationEqualsToken */:
42442
42425
  case 37 /* EqualsEqualsEqualsToken */:
42443
42426
  case 38 /* ExclamationEqualsEqualsToken */:
42444
- return isNarrowableOperand(expr.left) || isNarrowableOperand(expr.right) || isNarrowingTypeofOperands(expr.right, expr.left) || isNarrowingTypeofOperands(expr.left, expr.right);
42427
+ return isNarrowableOperand(expr.left) || isNarrowableOperand(expr.right) || isNarrowingTypeofOperands(expr.right, expr.left) || isNarrowingTypeofOperands(expr.left, expr.right) || (isBooleanLiteral(expr.right) && isNarrowingExpression(expr.left) || isBooleanLiteral(expr.left) && isNarrowingExpression(expr.right));
42445
42428
  case 104 /* InstanceOfKeyword */:
42446
42429
  return isNarrowableOperand(expr.left);
42447
42430
  case 103 /* InKeyword */:
@@ -42761,7 +42744,7 @@ ${lanes.join("\n")}
42761
42744
  }
42762
42745
  function bindCaseBlock(node) {
42763
42746
  const clauses = node.clauses;
42764
- const isNarrowingSwitch = isNarrowingExpression(node.parent.expression);
42747
+ const isNarrowingSwitch = node.parent.expression.kind === 112 /* TrueKeyword */ || isNarrowingExpression(node.parent.expression);
42765
42748
  let fallthroughFlow = unreachableFlow;
42766
42749
  for (let i = 0; i < clauses.length; i++) {
42767
42750
  const clauseStart = i;
@@ -68032,6 +68015,17 @@ ${lanes.join("\n")}
68032
68015
  type = narrowTypeBySwitchOnDiscriminant(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd);
68033
68016
  } else if (expr.kind === 221 /* TypeOfExpression */ && isMatchingReference(reference, expr.expression)) {
68034
68017
  type = narrowTypeBySwitchOnTypeOf(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd);
68018
+ } else if (expr.kind === 112 /* TrueKeyword */) {
68019
+ const clause = flow.switchStatement.caseBlock.clauses.find((_, index) => index === flow.clauseStart);
68020
+ const clauseExpression = clause && clause.kind === 296 /* CaseClause */ ? clause.expression : void 0;
68021
+ if (clauseExpression) {
68022
+ type = narrowType(
68023
+ type,
68024
+ clauseExpression,
68025
+ /*assumeTrue*/
68026
+ true
68027
+ );
68028
+ }
68035
68029
  } else {
68036
68030
  if (strictNullChecks) {
68037
68031
  if (optionalChainContainsReference(expr, reference)) {
@@ -68279,6 +68273,10 @@ ${lanes.join("\n")}
68279
68273
  }
68280
68274
  return type;
68281
68275
  }
68276
+ function narrowTypeByBooleanComparison(type, expr, bool, operator, assumeTrue) {
68277
+ assumeTrue = assumeTrue !== (bool.kind === 112 /* TrueKeyword */) !== (operator !== 38 /* ExclamationEqualsEqualsToken */ && operator !== 36 /* ExclamationEqualsToken */);
68278
+ return narrowType(type, expr, assumeTrue);
68279
+ }
68282
68280
  function narrowTypeByBinaryExpression(type, expr, assumeTrue) {
68283
68281
  switch (expr.operatorToken.kind) {
68284
68282
  case 64 /* EqualsToken */:
@@ -68326,6 +68324,12 @@ ${lanes.join("\n")}
68326
68324
  if (isMatchingConstructorReference(right)) {
68327
68325
  return narrowTypeByConstructor(type, operator, left, assumeTrue);
68328
68326
  }
68327
+ if (isBooleanLiteral(right)) {
68328
+ return narrowTypeByBooleanComparison(type, left, right, operator, assumeTrue);
68329
+ }
68330
+ if (isBooleanLiteral(left)) {
68331
+ return narrowTypeByBooleanComparison(type, right, left, operator, assumeTrue);
68332
+ }
68329
68333
  break;
68330
68334
  case 104 /* InstanceOfKeyword */:
68331
68335
  return narrowTypeByInstanceof(type, expr, assumeTrue);
@@ -117874,16 +117878,10 @@ ${lanes.join("\n")}
117874
117878
  }
117875
117879
  return getPathFromPathComponents(commonPathComponents);
117876
117880
  }
117877
- function createCompilerHost(options, setParentNodes, jsDocParsingMode) {
117878
- return createCompilerHostWorker(
117879
- options,
117880
- setParentNodes,
117881
- /*system*/
117882
- void 0,
117883
- jsDocParsingMode
117884
- );
117881
+ function createCompilerHost(options, setParentNodes) {
117882
+ return createCompilerHostWorker(options, setParentNodes);
117885
117883
  }
117886
- function createGetSourceFile(readFile, getCompilerOptions, setParentNodes, jsDocParsingMode) {
117884
+ function createGetSourceFile(readFile, getCompilerOptions, setParentNodes, skipNonSemanticJSDocParsing) {
117887
117885
  return (fileName, languageVersionOrOptions, onError) => {
117888
117886
  let text;
117889
117887
  try {
@@ -117904,7 +117902,7 @@ ${lanes.join("\n")}
117904
117902
  setParentNodes,
117905
117903
  /*scriptKind*/
117906
117904
  void 0,
117907
- jsDocParsingMode
117905
+ skipNonSemanticJSDocParsing
117908
117906
  ) : void 0;
117909
117907
  };
117910
117908
  }
@@ -117929,7 +117927,7 @@ ${lanes.join("\n")}
117929
117927
  }
117930
117928
  };
117931
117929
  }
117932
- function createCompilerHostWorker(options, setParentNodes, system = sys, jsDocParsingMode) {
117930
+ function createCompilerHostWorker(options, setParentNodes, skipNonSemanticJSDocParsing, system = sys) {
117933
117931
  const existingDirectories = /* @__PURE__ */ new Map();
117934
117932
  const getCanonicalFileName = createGetCanonicalFileName(system.useCaseSensitiveFileNames);
117935
117933
  function directoryExists(directoryPath) {
@@ -117948,7 +117946,7 @@ ${lanes.join("\n")}
117948
117946
  const newLine = getNewLineCharacter(options);
117949
117947
  const realpath = system.realpath && ((path) => system.realpath(path));
117950
117948
  const compilerHost = {
117951
- getSourceFile: createGetSourceFile((fileName) => compilerHost.readFile(fileName), () => options, setParentNodes, jsDocParsingMode),
117949
+ getSourceFile: createGetSourceFile((fileName) => compilerHost.readFile(fileName), () => options, setParentNodes, skipNonSemanticJSDocParsing),
117952
117950
  getDefaultLibLocation,
117953
117951
  getDefaultLibFileName: (options2) => combinePaths(getDefaultLibLocation(), getDefaultLibFileName(options2)),
117954
117952
  writeFile: createWriteFileMeasuringIO(
@@ -125095,7 +125093,7 @@ ${lanes.join("\n")}
125095
125093
  getCompilerOptions,
125096
125094
  /*setParentNodes*/
125097
125095
  void 0,
125098
- host.jsDocParsingMode
125096
+ host.skipNonSemanticJSDocParsing
125099
125097
  ),
125100
125098
  getDefaultLibLocation: maybeBind(host, host.getDefaultLibLocation),
125101
125099
  getDefaultLibFileName: (options) => host.getDefaultLibFileName(options),
@@ -125322,13 +125320,13 @@ ${lanes.join("\n")}
125322
125320
  return void 0;
125323
125321
  return createBuilderProgramUsingProgramBuildInfo(buildInfo, buildInfoPath, host);
125324
125322
  }
125325
- function createIncrementalCompilerHost(options, system = sys, jsDocParsingMode) {
125323
+ function createIncrementalCompilerHost(options, system = sys, skipNonSemanticJSDocParsing) {
125326
125324
  const host = createCompilerHostWorker(
125327
125325
  options,
125328
125326
  /*setParentNodes*/
125329
125327
  void 0,
125330
- system,
125331
- jsDocParsingMode
125328
+ skipNonSemanticJSDocParsing,
125329
+ system
125332
125330
  );
125333
125331
  host.createHash = maybeBind(system, system.createHash);
125334
125332
  host.storeFilesChangingSignatureDuringEmit = system.storeFilesChangingSignatureDuringEmit;
@@ -133429,10 +133427,10 @@ ${lanes.join("\n")}
133429
133427
  function isDocumentRegistryEntry(entry) {
133430
133428
  return !!entry.sourceFile;
133431
133429
  }
133432
- function createDocumentRegistry(useCaseSensitiveFileNames2, currentDirectory, jsDocParsingMode) {
133433
- return createDocumentRegistryInternal(useCaseSensitiveFileNames2, currentDirectory, jsDocParsingMode);
133430
+ function createDocumentRegistry(useCaseSensitiveFileNames2, currentDirectory) {
133431
+ return createDocumentRegistryInternal(useCaseSensitiveFileNames2, currentDirectory);
133434
133432
  }
133435
- function createDocumentRegistryInternal(useCaseSensitiveFileNames2, currentDirectory = "", jsDocParsingMode, externalCache) {
133433
+ function createDocumentRegistryInternal(useCaseSensitiveFileNames2, currentDirectory = "", externalCache) {
133436
133434
  const buckets = /* @__PURE__ */ new Map();
133437
133435
  const getCanonicalFileName = createGetCanonicalFileName(!!useCaseSensitiveFileNames2);
133438
133436
  function reportStats() {
@@ -133552,8 +133550,7 @@ ${lanes.join("\n")}
133552
133550
  version2,
133553
133551
  /*setNodeParents*/
133554
133552
  false,
133555
- scriptKind,
133556
- jsDocParsingMode
133553
+ scriptKind
133557
133554
  );
133558
133555
  if (externalCache) {
133559
133556
  externalCache.setDocument(keyWithMode, path, sourceFile);
@@ -134974,12 +134971,7 @@ ${lanes.join("\n")}
134974
134971
  options
134975
134972
  ),
134976
134973
  setExternalModuleIndicator: getSetExternalModuleIndicator(options)
134977
- },
134978
- /*setParentNodes*/
134979
- void 0,
134980
- /*scriptKind*/
134981
- void 0,
134982
- 3 /* ParseNone */
134974
+ }
134983
134975
  );
134984
134976
  if (transpileOptions.moduleName) {
134985
134977
  sourceFile.moduleName = transpileOptions.moduleName;
@@ -141857,8 +141849,8 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
141857
141849
  sourceFile.version = version2;
141858
141850
  sourceFile.scriptSnapshot = scriptSnapshot;
141859
141851
  }
141860
- function createLanguageServiceSourceFile(fileName, scriptSnapshot, scriptTargetOrOptions, version2, setNodeParents, scriptKind, jsDocParsingMode) {
141861
- const sourceFile = createSourceFile(fileName, getSnapshotText(scriptSnapshot), scriptTargetOrOptions, setNodeParents, scriptKind, jsDocParsingMode);
141852
+ function createLanguageServiceSourceFile(fileName, scriptSnapshot, scriptTargetOrOptions, version2, setNodeParents, scriptKind) {
141853
+ const sourceFile = createSourceFile(fileName, getSnapshotText(scriptSnapshot), scriptTargetOrOptions, setNodeParents, scriptKind);
141862
141854
  setSourceFileFields(sourceFile, scriptSnapshot, version2);
141863
141855
  return sourceFile;
141864
141856
  }
@@ -141898,8 +141890,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
141898
141890
  version2,
141899
141891
  /*setNodeParents*/
141900
141892
  true,
141901
- sourceFile.scriptKind,
141902
- sourceFile.jsDocParsingMode
141893
+ sourceFile.scriptKind
141903
141894
  );
141904
141895
  }
141905
141896
  function createLanguageService(host, documentRegistry = createDocumentRegistry(host.useCaseSensitiveFileNames && host.useCaseSensitiveFileNames(), host.getCurrentDirectory()), syntaxOnlyOrLanguageServiceMode) {
@@ -143746,8 +143737,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
143746
143737
  version2,
143747
143738
  /*setNodeParents*/
143748
143739
  true,
143749
- scriptKind,
143750
- this.host.jsDocParsingMode
143740
+ scriptKind
143751
143741
  );
143752
143742
  } else if (this.currentFileVersion !== version2) {
143753
143743
  const editRange = scriptSnapshot.getChangeRange(this.currentFileScriptSnapshot);
@@ -149856,7 +149846,6 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
149856
149846
  if (aliasDeclaration.isTypeOnly) {
149857
149847
  const sortKind = ts_OrganizeImports_exports.detectImportSpecifierSorting(aliasDeclaration.parent.elements, preferences);
149858
149848
  if (aliasDeclaration.parent.elements.length > 1 && sortKind) {
149859
- changes.delete(sourceFile, aliasDeclaration);
149860
149849
  const newSpecifier = factory.updateImportSpecifier(
149861
149850
  aliasDeclaration,
149862
149851
  /*isTypeOnly*/
@@ -149866,10 +149855,13 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
149866
149855
  );
149867
149856
  const comparer = ts_OrganizeImports_exports.getOrganizeImportsComparer(preferences, sortKind === 2 /* CaseInsensitive */);
149868
149857
  const insertionIndex = ts_OrganizeImports_exports.getImportSpecifierInsertionIndex(aliasDeclaration.parent.elements, newSpecifier, comparer);
149869
- changes.insertImportSpecifierAtIndex(sourceFile, newSpecifier, aliasDeclaration.parent, insertionIndex);
149870
- } else {
149871
- changes.deleteRange(sourceFile, aliasDeclaration.getFirstToken());
149858
+ if (aliasDeclaration.parent.elements.indexOf(aliasDeclaration) !== insertionIndex) {
149859
+ changes.delete(sourceFile, aliasDeclaration);
149860
+ changes.insertImportSpecifierAtIndex(sourceFile, newSpecifier, aliasDeclaration.parent, insertionIndex);
149861
+ return aliasDeclaration;
149862
+ }
149872
149863
  }
149864
+ changes.deleteRange(sourceFile, aliasDeclaration.getFirstToken());
149873
149865
  return aliasDeclaration;
149874
149866
  } else {
149875
149867
  Debug.assert(aliasDeclaration.parent.parent.isTypeOnly);
@@ -168788,8 +168780,7 @@ ${options.prefix}` : "\n" : options.prefix
168788
168780
  99 /* ESNext */,
168789
168781
  /*setParentNodes*/
168790
168782
  true,
168791
- scriptKind,
168792
- 3 /* ParseNone */
168783
+ scriptKind
168793
168784
  );
168794
168785
  const changes = ts_formatting_exports.formatDocument(sourceFile, formatContext);
168795
168786
  return applyChanges(nonFormattedText, changes) + newLineCharacter;
@@ -173598,7 +173589,6 @@ ${options.prefix}` : "\n" : options.prefix
173598
173589
  this.directoryStructureHost = directoryStructureHost;
173599
173590
  this.currentDirectory = this.projectService.getNormalizedAbsolutePath(currentDirectory);
173600
173591
  this.getCanonicalFileName = this.projectService.toCanonicalFileName;
173601
- this.jsDocParsingMode = this.projectService.jsDocParsingMode;
173602
173592
  this.cancellationToken = new ThrottledCancellationToken(this.projectService.cancellationToken, this.projectService.throttleWaitMilliseconds);
173603
173593
  if (!this.compilerOptions) {
173604
173594
  this.compilerOptions = getDefaultCompilerOptions2();
@@ -176161,7 +176151,6 @@ ${options.prefix}` : "\n" : options.prefix
176161
176151
  this.allowLocalPluginLoads = !!opts.allowLocalPluginLoads;
176162
176152
  this.typesMapLocation = opts.typesMapLocation === void 0 ? combinePaths(getDirectoryPath(this.getExecutingFilePath()), "typesMap.json") : opts.typesMapLocation;
176163
176153
  this.session = opts.session;
176164
- this.jsDocParsingMode = opts.jsDocParsingMode;
176165
176154
  if (opts.serverMode !== void 0) {
176166
176155
  this.serverMode = opts.serverMode;
176167
176156
  } else {
@@ -176187,7 +176176,7 @@ ${options.prefix}` : "\n" : options.prefix
176187
176176
  hostInfo: "Unknown host",
176188
176177
  extraFileExtensions: []
176189
176178
  };
176190
- this.documentRegistry = createDocumentRegistryInternal(this.host.useCaseSensitiveFileNames, this.currentDirectory, this.jsDocParsingMode, this);
176179
+ this.documentRegistry = createDocumentRegistryInternal(this.host.useCaseSensitiveFileNames, this.currentDirectory, this);
176191
176180
  const watchLogLevel = this.logger.hasLevel(3 /* verbose */) ? 2 /* Verbose */ : this.logger.loggingEnabled() ? 1 /* TriggerOnly */ : 0 /* None */;
176192
176181
  const log = watchLogLevel !== 0 /* None */ ? (s) => this.logger.info(s) : noop;
176193
176182
  this.packageJsonCache = createPackageJsonCache(this);
@@ -183479,7 +183468,6 @@ ${e.message}`;
183479
183468
  InternalEmitFlags: () => InternalEmitFlags,
183480
183469
  InternalSymbolName: () => InternalSymbolName,
183481
183470
  InvalidatedProjectKind: () => InvalidatedProjectKind,
183482
- JSDocParsingMode: () => JSDocParsingMode,
183483
183471
  JsDoc: () => ts_JsDoc_exports,
183484
183472
  JsTyping: () => ts_JsTyping_exports,
183485
183473
  JsxEmit: () => JsxEmit,
@@ -185884,7 +185872,6 @@ ${e.message}`;
185884
185872
  InternalEmitFlags: () => InternalEmitFlags,
185885
185873
  InternalSymbolName: () => InternalSymbolName,
185886
185874
  InvalidatedProjectKind: () => InvalidatedProjectKind,
185887
- JSDocParsingMode: () => JSDocParsingMode,
185888
185875
  JsDoc: () => ts_JsDoc_exports,
185889
185876
  JsTyping: () => ts_JsTyping_exports,
185890
185877
  JsxEmit: () => JsxEmit,