typescript 5.2.0-dev.20230728 → 5.2.0-dev.20230730
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/lib.es2015.core.d.ts +2 -2
- package/lib/lib.es2020.bigint.d.ts +4 -4
- package/lib/lib.es5.d.ts +18 -18
- package/lib/tsc.js +48 -41
- package/lib/tsserver.js +81 -58
- package/lib/tsserverlibrary.js +79 -58
- package/lib/typescript.js +74 -55
- package/lib/typingsInstaller.js +5 -5
- package/package.json +2 -2
package/lib/typescript.js
CHANGED
|
@@ -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-dev.
|
|
38
|
+
version = `${versionMajorMinor}.0-dev.20230730`;
|
|
39
39
|
Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
40
40
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
41
41
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -1646,7 +1646,7 @@ var ts = (() => {
|
|
|
1646
1646
|
return void 0;
|
|
1647
1647
|
};
|
|
1648
1648
|
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
1649
|
-
fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_
|
|
1649
|
+
fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_. ]+/g;
|
|
1650
1650
|
AssertionLevel = /* @__PURE__ */ ((AssertionLevel2) => {
|
|
1651
1651
|
AssertionLevel2[AssertionLevel2["None"] = 0] = "None";
|
|
1652
1652
|
AssertionLevel2[AssertionLevel2["Normal"] = 1] = "Normal";
|
|
@@ -1951,7 +1951,7 @@ Node ${formatSyntaxKind(node.kind)} was unexpected.`,
|
|
|
1951
1951
|
return func.name;
|
|
1952
1952
|
} else {
|
|
1953
1953
|
const text = Function.prototype.toString.call(func);
|
|
1954
|
-
const match = /^function\s+([\w
|
|
1954
|
+
const match = /^function\s+([\w$]+)\s*\(/.exec(text);
|
|
1955
1955
|
return match ? match[1] : "";
|
|
1956
1956
|
}
|
|
1957
1957
|
}
|
|
@@ -2936,7 +2936,7 @@ ${lanes.join("\n")}
|
|
|
2936
2936
|
"src/compiler/semver.ts"() {
|
|
2937
2937
|
"use strict";
|
|
2938
2938
|
init_ts2();
|
|
2939
|
-
versionRegExp = /^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(
|
|
2939
|
+
versionRegExp = /^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:-([a-z0-9-.]+))?(?:\+([a-z0-9-.]+))?)?)?$/i;
|
|
2940
2940
|
prereleaseRegExp = /^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)(?:\.(?:0|[1-9]\d*|[a-z-][a-z0-9-]*))*$/i;
|
|
2941
2941
|
prereleasePartRegExp = /^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)$/i;
|
|
2942
2942
|
buildRegExp = /^[a-z0-9-]+(?:\.[a-z0-9-]+)*$/i;
|
|
@@ -11522,7 +11522,7 @@ ${lanes.join("\n")}
|
|
|
11522
11522
|
}
|
|
11523
11523
|
function validateLocaleAndSetLanguage(locale, sys2, errors) {
|
|
11524
11524
|
const lowerCaseLocale = locale.toLowerCase();
|
|
11525
|
-
const matchResult = /^([a-z]+)([_
|
|
11525
|
+
const matchResult = /^([a-z]+)([_-]([a-z]+))?$/.exec(lowerCaseLocale);
|
|
11526
11526
|
if (!matchResult) {
|
|
11527
11527
|
if (errors) {
|
|
11528
11528
|
errors.push(createCompilerDiagnostic(Diagnostics.Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1, "en", "ja-jp"));
|
|
@@ -16738,6 +16738,12 @@ ${lanes.join("\n")}
|
|
|
16738
16738
|
function isThisIdentifier(node) {
|
|
16739
16739
|
return !!node && node.kind === 80 /* Identifier */ && identifierIsThisKeyword(node);
|
|
16740
16740
|
}
|
|
16741
|
+
function isInTypeQuery(node) {
|
|
16742
|
+
return !!findAncestor(
|
|
16743
|
+
node,
|
|
16744
|
+
(n) => n.kind === 186 /* TypeQuery */ ? true : n.kind === 80 /* Identifier */ || n.kind === 166 /* QualifiedName */ ? false : "quit"
|
|
16745
|
+
);
|
|
16746
|
+
}
|
|
16741
16747
|
function isThisInTypeQuery(node) {
|
|
16742
16748
|
if (!isThisIdentifier(node)) {
|
|
16743
16749
|
return false;
|
|
@@ -18219,6 +18225,9 @@ ${lanes.join("\n")}
|
|
|
18219
18225
|
function getUseDefineForClassFields(compilerOptions) {
|
|
18220
18226
|
return compilerOptions.useDefineForClassFields === void 0 ? getEmitScriptTarget(compilerOptions) >= 9 /* ES2022 */ : compilerOptions.useDefineForClassFields;
|
|
18221
18227
|
}
|
|
18228
|
+
function getEmitStandardClassFields(compilerOptions) {
|
|
18229
|
+
return compilerOptions.useDefineForClassFields !== false && getEmitScriptTarget(compilerOptions) >= 9 /* ES2022 */;
|
|
18230
|
+
}
|
|
18222
18231
|
function compilerOptionsAffectSemanticDiagnostics(newOptions, oldOptions) {
|
|
18223
18232
|
return optionsHaveChanges(oldOptions, newOptions, semanticDiagnosticsOptionDeclarations);
|
|
18224
18233
|
}
|
|
@@ -19310,9 +19319,9 @@ ${lanes.join("\n")}
|
|
|
19310
19319
|
return OperatorPrecedence2;
|
|
19311
19320
|
})(OperatorPrecedence || {});
|
|
19312
19321
|
templateSubstitutionRegExp = /\$\{/g;
|
|
19313
|
-
doubleQuoteEscapedCharsRegExp = /[
|
|
19314
|
-
singleQuoteEscapedCharsRegExp = /[
|
|
19315
|
-
backtickQuoteEscapedCharsRegExp = /\r\n|[
|
|
19322
|
+
doubleQuoteEscapedCharsRegExp = /[\\"\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g;
|
|
19323
|
+
singleQuoteEscapedCharsRegExp = /[\\'\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g;
|
|
19324
|
+
backtickQuoteEscapedCharsRegExp = /\r\n|[\\`\u0000-\u001f\t\v\f\b\r\u2028\u2029\u0085]/g;
|
|
19316
19325
|
escapedCharsMap = new Map(Object.entries({
|
|
19317
19326
|
" ": "\\t",
|
|
19318
19327
|
"\v": "\\v",
|
|
@@ -19334,8 +19343,8 @@ ${lanes.join("\n")}
|
|
|
19334
19343
|
// special case for CRLFs in backticks
|
|
19335
19344
|
}));
|
|
19336
19345
|
nonAsciiCharacters = /[^\u0000-\u007F]/g;
|
|
19337
|
-
jsxDoubleQuoteEscapedCharsRegExp = /[
|
|
19338
|
-
jsxSingleQuoteEscapedCharsRegExp = /[
|
|
19346
|
+
jsxDoubleQuoteEscapedCharsRegExp = /["\u0000-\u001f\u2028\u2029\u0085]/g;
|
|
19347
|
+
jsxSingleQuoteEscapedCharsRegExp = /['\u0000-\u001f\u2028\u2029\u0085]/g;
|
|
19339
19348
|
jsxEscapedCharsMap = new Map(Object.entries({
|
|
19340
19349
|
'"': """,
|
|
19341
19350
|
"'": "'"
|
|
@@ -19356,7 +19365,7 @@ ${lanes.join("\n")}
|
|
|
19356
19365
|
getSourceMapSourceConstructor: () => SourceMapSource
|
|
19357
19366
|
};
|
|
19358
19367
|
objectAllocatorPatchers = [];
|
|
19359
|
-
reservedCharacterPattern = /[^\w\s
|
|
19368
|
+
reservedCharacterPattern = /[^\w\s/]/g;
|
|
19360
19369
|
wildcardCharCodes = [42 /* asterisk */, 63 /* question */];
|
|
19361
19370
|
commonPackageFolders = ["node_modules", "bower_components", "jspm_packages"];
|
|
19362
19371
|
implicitExcludePathRegexPattern = `(?!(${commonPackageFolders.join("|")})(/|$))`;
|
|
@@ -45518,6 +45527,7 @@ ${lanes.join("\n")}
|
|
|
45518
45527
|
var moduleKind = getEmitModuleKind(compilerOptions);
|
|
45519
45528
|
var legacyDecorators = !!compilerOptions.experimentalDecorators;
|
|
45520
45529
|
var useDefineForClassFields = getUseDefineForClassFields(compilerOptions);
|
|
45530
|
+
var emitStandardClassFields = getEmitStandardClassFields(compilerOptions);
|
|
45521
45531
|
var allowSyntheticDefaultImports = getAllowSyntheticDefaultImports(compilerOptions);
|
|
45522
45532
|
var strictNullChecks = getStrictOptionValue(compilerOptions, "strictNullChecks");
|
|
45523
45533
|
var strictFunctionTypes = getStrictOptionValue(compilerOptions, "strictFunctionTypes");
|
|
@@ -46872,7 +46882,7 @@ ${lanes.join("\n")}
|
|
|
46872
46882
|
false
|
|
46873
46883
|
);
|
|
46874
46884
|
} else if (isParameterPropertyDeclaration(declaration, declaration.parent)) {
|
|
46875
|
-
return !(
|
|
46885
|
+
return !(emitStandardClassFields && getContainingClass(declaration) === getContainingClass(usage) && isUsedInFunctionOrInstanceProperty(usage, declaration));
|
|
46876
46886
|
}
|
|
46877
46887
|
return true;
|
|
46878
46888
|
}
|
|
@@ -46886,7 +46896,7 @@ ${lanes.join("\n")}
|
|
|
46886
46896
|
return true;
|
|
46887
46897
|
}
|
|
46888
46898
|
if (isUsedInFunctionOrInstanceProperty(usage, declaration)) {
|
|
46889
|
-
if (
|
|
46899
|
+
if (emitStandardClassFields && getContainingClass(declaration) && (isPropertyDeclaration(declaration) || isParameterPropertyDeclaration(declaration, declaration.parent))) {
|
|
46890
46900
|
return !isPropertyImmediatelyReferencedWithinDeclaration(
|
|
46891
46901
|
declaration,
|
|
46892
46902
|
usage,
|
|
@@ -47010,7 +47020,7 @@ ${lanes.join("\n")}
|
|
|
47010
47020
|
return requiresScopeChangeWorker(node.name);
|
|
47011
47021
|
case 172 /* PropertyDeclaration */:
|
|
47012
47022
|
if (hasStaticModifier(node)) {
|
|
47013
|
-
return
|
|
47023
|
+
return !emitStandardClassFields;
|
|
47014
47024
|
}
|
|
47015
47025
|
return requiresScopeChangeWorker(node.name);
|
|
47016
47026
|
default:
|
|
@@ -47281,7 +47291,7 @@ ${lanes.join("\n")}
|
|
|
47281
47291
|
}
|
|
47282
47292
|
}
|
|
47283
47293
|
function checkAndReportErrorForInvalidInitializer() {
|
|
47284
|
-
if (propertyWithInvalidInitializer && !
|
|
47294
|
+
if (propertyWithInvalidInitializer && !emitStandardClassFields) {
|
|
47285
47295
|
error2(
|
|
47286
47296
|
errorLocation,
|
|
47287
47297
|
errorLocation && propertyWithInvalidInitializer.type && textRangeContainsPositionInclusive(propertyWithInvalidInitializer.type, errorLocation.pos) ? Diagnostics.Type_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor : Diagnostics.Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor,
|
|
@@ -58837,6 +58847,9 @@ ${lanes.join("\n")}
|
|
|
58837
58847
|
function getEndElementCount(type, flags) {
|
|
58838
58848
|
return type.elementFlags.length - findLastIndex(type.elementFlags, (f) => !(f & flags)) - 1;
|
|
58839
58849
|
}
|
|
58850
|
+
function getTotalFixedElementCount(type) {
|
|
58851
|
+
return type.fixedLength + getEndElementCount(type, 3 /* Fixed */);
|
|
58852
|
+
}
|
|
58840
58853
|
function getElementTypes(type) {
|
|
58841
58854
|
const typeArguments = getTypeArguments(type);
|
|
58842
58855
|
const arity = getTypeReferenceArity(type);
|
|
@@ -59742,10 +59755,7 @@ ${lanes.join("\n")}
|
|
|
59742
59755
|
}
|
|
59743
59756
|
if (index >= 0) {
|
|
59744
59757
|
errorIfWritingToReadonlyIndex(getIndexInfoOfType(objectType, numberType));
|
|
59745
|
-
return
|
|
59746
|
-
const restType = getRestTypeOfTupleType(t) || undefinedType;
|
|
59747
|
-
return accessFlags & 1 /* IncludeUndefined */ ? getUnionType([restType, missingType]) : restType;
|
|
59748
|
-
});
|
|
59758
|
+
return getTupleElementTypeOutOfStartCount(objectType, index, accessFlags & 1 /* IncludeUndefined */ ? missingType : void 0);
|
|
59749
59759
|
}
|
|
59750
59760
|
}
|
|
59751
59761
|
}
|
|
@@ -60030,7 +60040,7 @@ ${lanes.join("\n")}
|
|
|
60030
60040
|
}
|
|
60031
60041
|
if (compilerOptions.noUncheckedIndexedAccess && accessFlags & 32 /* ExpressionPosition */)
|
|
60032
60042
|
accessFlags |= 1 /* IncludeUndefined */;
|
|
60033
|
-
if (isGenericIndexType(indexType) || (accessNode && accessNode.kind !== 199 /* IndexedAccessType */ ? isGenericTupleType(objectType) && !indexTypeLessThan(indexType, objectType.target
|
|
60043
|
+
if (isGenericIndexType(indexType) || (accessNode && accessNode.kind !== 199 /* IndexedAccessType */ ? isGenericTupleType(objectType) && !indexTypeLessThan(indexType, getTotalFixedElementCount(objectType.target)) : isGenericObjectType(objectType) && !(isTupleType(objectType) && indexTypeLessThan(indexType, getTotalFixedElementCount(objectType.target))) || isGenericReducibleType(objectType))) {
|
|
60034
60044
|
if (objectType.flags & 3 /* AnyOrUnknown */) {
|
|
60035
60045
|
return objectType;
|
|
60036
60046
|
}
|
|
@@ -65041,17 +65051,7 @@ ${lanes.join("\n")}
|
|
|
65041
65051
|
return propType;
|
|
65042
65052
|
}
|
|
65043
65053
|
if (everyType(type, isTupleType)) {
|
|
65044
|
-
return
|
|
65045
|
-
const tupleType = t;
|
|
65046
|
-
const restType = getRestTypeOfTupleType(tupleType);
|
|
65047
|
-
if (!restType) {
|
|
65048
|
-
return undefinedType;
|
|
65049
|
-
}
|
|
65050
|
-
if (compilerOptions.noUncheckedIndexedAccess && index >= tupleType.target.fixedLength + getEndElementCount(tupleType.target, 3 /* Fixed */)) {
|
|
65051
|
-
return getUnionType([restType, undefinedType]);
|
|
65052
|
-
}
|
|
65053
|
-
return restType;
|
|
65054
|
-
});
|
|
65054
|
+
return getTupleElementTypeOutOfStartCount(type, index, compilerOptions.noUncheckedIndexedAccess ? undefinedType : void 0);
|
|
65055
65055
|
}
|
|
65056
65056
|
return void 0;
|
|
65057
65057
|
}
|
|
@@ -65119,6 +65119,19 @@ ${lanes.join("\n")}
|
|
|
65119
65119
|
function getRestTypeOfTupleType(type) {
|
|
65120
65120
|
return getElementTypeOfSliceOfTupleType(type, type.target.fixedLength);
|
|
65121
65121
|
}
|
|
65122
|
+
function getTupleElementTypeOutOfStartCount(type, index, undefinedOrMissingType2) {
|
|
65123
|
+
return mapType(type, (t) => {
|
|
65124
|
+
const tupleType = t;
|
|
65125
|
+
const restType = getRestTypeOfTupleType(tupleType);
|
|
65126
|
+
if (!restType) {
|
|
65127
|
+
return undefinedType;
|
|
65128
|
+
}
|
|
65129
|
+
if (undefinedOrMissingType2 && index >= getTotalFixedElementCount(tupleType.target)) {
|
|
65130
|
+
return getUnionType([restType, undefinedOrMissingType2]);
|
|
65131
|
+
}
|
|
65132
|
+
return restType;
|
|
65133
|
+
});
|
|
65134
|
+
}
|
|
65122
65135
|
function getRestArrayTypeOfTupleType(type) {
|
|
65123
65136
|
const restType = getRestTypeOfTupleType(type);
|
|
65124
65137
|
return restType && createArrayType(restType);
|
|
@@ -66618,12 +66631,6 @@ ${lanes.join("\n")}
|
|
|
66618
66631
|
}
|
|
66619
66632
|
return links.resolvedSymbol;
|
|
66620
66633
|
}
|
|
66621
|
-
function isInTypeQuery(node) {
|
|
66622
|
-
return !!findAncestor(
|
|
66623
|
-
node,
|
|
66624
|
-
(n) => n.kind === 186 /* TypeQuery */ ? true : n.kind === 80 /* Identifier */ || n.kind === 166 /* QualifiedName */ ? false : "quit"
|
|
66625
|
-
);
|
|
66626
|
-
}
|
|
66627
66634
|
function isInAmbientOrTypeNode(node) {
|
|
66628
66635
|
return !!(node.flags & 33554432 /* Ambient */ || findAncestor(node, (n) => isInterfaceDeclaration(n) || isTypeAliasDeclaration(n) || isTypeLiteralNode(n)));
|
|
66629
66636
|
}
|
|
@@ -71846,7 +71853,7 @@ ${lanes.join("\n")}
|
|
|
71846
71853
|
}
|
|
71847
71854
|
let diagnosticMessage;
|
|
71848
71855
|
const declarationName = idText(right);
|
|
71849
|
-
if (isInPropertyInitializerOrClassStaticBlock(node) && !isOptionalPropertyDeclaration(valueDeclaration) && !(isAccessExpression(node) && isAccessExpression(node.expression)) && !isBlockScopedNameDeclaredBeforeUse(valueDeclaration, right) && !(isMethodDeclaration(valueDeclaration) && getCombinedModifierFlagsCached(valueDeclaration) & 32 /* Static */) && (
|
|
71856
|
+
if (isInPropertyInitializerOrClassStaticBlock(node) && !isOptionalPropertyDeclaration(valueDeclaration) && !(isAccessExpression(node) && isAccessExpression(node.expression)) && !isBlockScopedNameDeclaredBeforeUse(valueDeclaration, right) && !(isMethodDeclaration(valueDeclaration) && getCombinedModifierFlagsCached(valueDeclaration) & 32 /* Static */) && (useDefineForClassFields || !isPropertyDeclaredInAncestorClass(prop))) {
|
|
71850
71857
|
diagnosticMessage = error2(right, Diagnostics.Property_0_is_used_before_its_initialization, declarationName);
|
|
71851
71858
|
} else if (valueDeclaration.kind === 263 /* ClassDeclaration */ && node.parent.kind !== 183 /* TypeReference */ && !(valueDeclaration.flags & 33554432 /* Ambient */) && !isBlockScopedNameDeclaredBeforeUse(valueDeclaration, right)) {
|
|
71852
71859
|
diagnosticMessage = error2(right, Diagnostics.Class_0_used_before_its_declaration, declarationName);
|
|
@@ -77558,7 +77565,7 @@ ${lanes.join("\n")}
|
|
|
77558
77565
|
case "length":
|
|
77559
77566
|
case "caller":
|
|
77560
77567
|
case "arguments":
|
|
77561
|
-
if (
|
|
77568
|
+
if (useDefineForClassFields) {
|
|
77562
77569
|
break;
|
|
77563
77570
|
}
|
|
77564
77571
|
case "prototype":
|
|
@@ -77706,7 +77713,7 @@ ${lanes.join("\n")}
|
|
|
77706
77713
|
if (classExtendsNull) {
|
|
77707
77714
|
error2(superCall, Diagnostics.A_constructor_cannot_contain_a_super_call_when_its_class_extends_null);
|
|
77708
77715
|
}
|
|
77709
|
-
const superCallShouldBeRootLevel =
|
|
77716
|
+
const superCallShouldBeRootLevel = !emitStandardClassFields && (some(node.parent.members, isInstancePropertyWithInitializerOrPrivateIdentifierProperty) || some(node.parameters, (p) => hasSyntacticModifier(p, 16476 /* ParameterPropertyModifier */)));
|
|
77710
77717
|
if (superCallShouldBeRootLevel) {
|
|
77711
77718
|
if (!superCallIsRootLevelInConstructor(superCall, node.body)) {
|
|
77712
77719
|
error2(superCall, Diagnostics.A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_initialized_properties_parameter_properties_or_private_identifiers);
|
|
@@ -80985,7 +80992,7 @@ ${lanes.join("\n")}
|
|
|
80985
80992
|
node
|
|
80986
80993
|
);
|
|
80987
80994
|
const willTransformPrivateElementsOrClassStaticBlocks = languageVersion <= 9 /* ES2022 */;
|
|
80988
|
-
const willTransformInitializers = !
|
|
80995
|
+
const willTransformInitializers = !emitStandardClassFields;
|
|
80989
80996
|
if (willTransformStaticElementsOfDecoratedClass || willTransformPrivateElementsOrClassStaticBlocks) {
|
|
80990
80997
|
for (const member of node.members) {
|
|
80991
80998
|
if (willTransformStaticElementsOfDecoratedClass && classElementOrClassElementParameterIsDecorated(
|
|
@@ -134403,7 +134410,7 @@ ${lanes.join("\n")}
|
|
|
134403
134410
|
"src/services/sourcemaps.ts"() {
|
|
134404
134411
|
"use strict";
|
|
134405
134412
|
init_ts4();
|
|
134406
|
-
base64UrlRegExp = /^data:(?:application\/json(?:;charset=[uU][tT][fF]-8);base64,([A-Za-z0-9
|
|
134413
|
+
base64UrlRegExp = /^data:(?:application\/json(?:;charset=[uU][tT][fF]-8);base64,([A-Za-z0-9+/=]+)$)?/;
|
|
134407
134414
|
}
|
|
134408
134415
|
});
|
|
134409
134416
|
|
|
@@ -142627,7 +142634,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
142627
142634
|
}
|
|
142628
142635
|
return result;
|
|
142629
142636
|
function escapeRegExp(str) {
|
|
142630
|
-
return str.replace(/[
|
|
142637
|
+
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, "\\$&");
|
|
142631
142638
|
}
|
|
142632
142639
|
function getTodoCommentsRegExp() {
|
|
142633
142640
|
const singleLineCommentStart = /(?:\/\/+\s*)/.source;
|
|
@@ -148429,7 +148436,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
148429
148436
|
function findEndOfTextBetween(jsDocComment, from, to) {
|
|
148430
148437
|
const comment = jsDocComment.getText().substring(from - jsDocComment.getStart(), to - jsDocComment.getStart());
|
|
148431
148438
|
for (let i = comment.length; i > 0; i--) {
|
|
148432
|
-
if (!/[
|
|
148439
|
+
if (!/[*/\s]/g.test(comment.substring(i - 1, i))) {
|
|
148433
148440
|
return from + i;
|
|
148434
148441
|
}
|
|
148435
148442
|
}
|
|
@@ -151942,7 +151949,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
151942
151949
|
);
|
|
151943
151950
|
}
|
|
151944
151951
|
function getSuggestion(messageText) {
|
|
151945
|
-
const [_, suggestion] = flattenDiagnosticMessageText(messageText, "\n", 0).match(
|
|
151952
|
+
const [_, suggestion] = flattenDiagnosticMessageText(messageText, "\n", 0).match(/'(.*)'/) || [];
|
|
151946
151953
|
return suggestion;
|
|
151947
151954
|
}
|
|
151948
151955
|
var fixId28, errorCodes34;
|
|
@@ -158111,7 +158118,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158111
158118
|
return { kind: 1 /* JsDocTagName */ };
|
|
158112
158119
|
} else {
|
|
158113
158120
|
const lineStart = getLineStartPositionForPosition(position, sourceFile);
|
|
158114
|
-
if (!/[
|
|
158121
|
+
if (!/[^*|\s(/)]/.test(sourceFile.text.substring(lineStart, position))) {
|
|
158115
158122
|
return { kind: 2 /* JsDocTag */ };
|
|
158116
158123
|
}
|
|
158117
158124
|
}
|
|
@@ -158410,24 +158417,34 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158410
158417
|
}
|
|
158411
158418
|
}
|
|
158412
158419
|
}
|
|
158413
|
-
if (!isTypeLocation) {
|
|
158420
|
+
if (!isTypeLocation || isInTypeQuery(node)) {
|
|
158414
158421
|
typeChecker.tryGetThisTypeAt(
|
|
158415
158422
|
node,
|
|
158416
158423
|
/*includeGlobalThis*/
|
|
158417
158424
|
false
|
|
158418
158425
|
);
|
|
158419
158426
|
let type = typeChecker.getTypeAtLocation(node).getNonOptionalType();
|
|
158420
|
-
|
|
158421
|
-
|
|
158422
|
-
|
|
158423
|
-
|
|
158424
|
-
|
|
158425
|
-
|
|
158426
|
-
|
|
158427
|
+
if (!isTypeLocation) {
|
|
158428
|
+
let insertQuestionDot = false;
|
|
158429
|
+
if (type.isNullableType()) {
|
|
158430
|
+
const canCorrectToQuestionDot = isRightOfDot && !isRightOfQuestionDot && preferences.includeAutomaticOptionalChainCompletions !== false;
|
|
158431
|
+
if (canCorrectToQuestionDot || isRightOfQuestionDot) {
|
|
158432
|
+
type = type.getNonNullableType();
|
|
158433
|
+
if (canCorrectToQuestionDot) {
|
|
158434
|
+
insertQuestionDot = true;
|
|
158435
|
+
}
|
|
158427
158436
|
}
|
|
158428
158437
|
}
|
|
158438
|
+
addTypeProperties(type, !!(node.flags & 65536 /* AwaitContext */), insertQuestionDot);
|
|
158439
|
+
} else {
|
|
158440
|
+
addTypeProperties(
|
|
158441
|
+
type.getNonNullableType(),
|
|
158442
|
+
/*insertAwait*/
|
|
158443
|
+
false,
|
|
158444
|
+
/*insertQuestionDot*/
|
|
158445
|
+
false
|
|
158446
|
+
);
|
|
158429
158447
|
}
|
|
158430
|
-
addTypeProperties(type, !!(node.flags & 65536 /* AwaitContext */), insertQuestionDot);
|
|
158431
158448
|
}
|
|
158432
158449
|
}
|
|
158433
158450
|
function addTypeProperties(type, insertAwait, insertQuestionDot) {
|
|
@@ -172403,6 +172420,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
172403
172420
|
getEmitModuleKind: () => getEmitModuleKind,
|
|
172404
172421
|
getEmitModuleResolutionKind: () => getEmitModuleResolutionKind,
|
|
172405
172422
|
getEmitScriptTarget: () => getEmitScriptTarget,
|
|
172423
|
+
getEmitStandardClassFields: () => getEmitStandardClassFields,
|
|
172406
172424
|
getEnclosingBlockScopeContainer: () => getEnclosingBlockScopeContainer,
|
|
172407
172425
|
getEnclosingContainer: () => getEnclosingContainer,
|
|
172408
172426
|
getEncodedSemanticClassifications: () => getEncodedSemanticClassifications,
|
|
@@ -173078,6 +173096,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
173078
173096
|
isInString: () => isInString,
|
|
173079
173097
|
isInTemplateString: () => isInTemplateString,
|
|
173080
173098
|
isInTopLevelContext: () => isInTopLevelContext,
|
|
173099
|
+
isInTypeQuery: () => isInTypeQuery,
|
|
173081
173100
|
isIncrementalCompilation: () => isIncrementalCompilation,
|
|
173082
173101
|
isIndexSignatureDeclaration: () => isIndexSignatureDeclaration,
|
|
173083
173102
|
isIndexedAccessTypeNode: () => isIndexedAccessTypeNode,
|
package/lib/typingsInstaller.js
CHANGED
|
@@ -54,7 +54,7 @@ var path = __toESM(require("path"));
|
|
|
54
54
|
|
|
55
55
|
// src/compiler/corePublic.ts
|
|
56
56
|
var versionMajorMinor = "5.2";
|
|
57
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
57
|
+
var version = `${versionMajorMinor}.0-dev.20230730`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
|
@@ -507,7 +507,7 @@ function identity(x) {
|
|
|
507
507
|
function toLowerCase(x) {
|
|
508
508
|
return x.toLowerCase();
|
|
509
509
|
}
|
|
510
|
-
var fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_
|
|
510
|
+
var fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_. ]+/g;
|
|
511
511
|
function toFileNameLowerCase(x) {
|
|
512
512
|
return fileNameLowerCaseRegExp.test(x) ? x.replace(fileNameLowerCaseRegExp, toLowerCase) : x;
|
|
513
513
|
}
|
|
@@ -1067,7 +1067,7 @@ Node ${formatSyntaxKind(node.kind)} was unexpected.`,
|
|
|
1067
1067
|
return func.name;
|
|
1068
1068
|
} else {
|
|
1069
1069
|
const text = Function.prototype.toString.call(func);
|
|
1070
|
-
const match = /^function\s+([\w
|
|
1070
|
+
const match = /^function\s+([\w$]+)\s*\(/.exec(text);
|
|
1071
1071
|
return match ? match[1] : "";
|
|
1072
1072
|
}
|
|
1073
1073
|
}
|
|
@@ -1850,7 +1850,7 @@ ${lanes.join("\n")}
|
|
|
1850
1850
|
})(Debug || (Debug = {}));
|
|
1851
1851
|
|
|
1852
1852
|
// src/compiler/semver.ts
|
|
1853
|
-
var versionRegExp = /^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(
|
|
1853
|
+
var versionRegExp = /^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:-([a-z0-9-.]+))?(?:\+([a-z0-9-.]+))?)?)?$/i;
|
|
1854
1854
|
var prereleaseRegExp = /^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)(?:\.(?:0|[1-9]\d*|[a-z-][a-z0-9-]*))*$/i;
|
|
1855
1855
|
var prereleasePartRegExp = /^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)$/i;
|
|
1856
1856
|
var buildRegExp = /^[a-z0-9-]+(?:\.[a-z0-9-]+)*$/i;
|
|
@@ -11305,7 +11305,7 @@ function getResolveJsonModule(compilerOptions) {
|
|
|
11305
11305
|
function getAllowJSCompilerOption(compilerOptions) {
|
|
11306
11306
|
return compilerOptions.allowJs === void 0 ? !!compilerOptions.checkJs : compilerOptions.allowJs;
|
|
11307
11307
|
}
|
|
11308
|
-
var reservedCharacterPattern = /[^\w\s
|
|
11308
|
+
var reservedCharacterPattern = /[^\w\s/]/g;
|
|
11309
11309
|
var wildcardCharCodes = [42 /* asterisk */, 63 /* question */];
|
|
11310
11310
|
var commonPackageFolders = ["node_modules", "bower_components", "jspm_packages"];
|
|
11311
11311
|
var implicitExcludePathRegexPattern = `(?!(${commonPackageFolders.join("|")})(/|$))`;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "typescript",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.2.0-dev.
|
|
5
|
+
"version": "5.2.0-dev.20230730",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"node": "20.1.0",
|
|
114
114
|
"npm": "8.19.4"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "250065e55b8f2bb212cb9d19b191cfeb15184ee0"
|
|
117
117
|
}
|