@typescript-deploys/pr-build 5.4.0-pr-57207-3 → 5.4.0-pr-56594-3
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/tsc.js +115 -166
- package/lib/tsserver.js +280 -287
- package/lib/typescript.d.ts +9 -31
- package/lib/typescript.js +280 -286
- package/lib/typingsInstaller.js +31 -85
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -3332,18 +3332,6 @@ declare namespace ts {
|
|
|
3332
3332
|
* Last version that was reported.
|
|
3333
3333
|
*/
|
|
3334
3334
|
private lastReportedVersion;
|
|
3335
|
-
/**
|
|
3336
|
-
* Current project's program version. (incremented everytime new program is created that is not complete reuse from the old one)
|
|
3337
|
-
* This property is changed in 'updateGraph' based on the set of files in program
|
|
3338
|
-
*/
|
|
3339
|
-
private projectProgramVersion;
|
|
3340
|
-
/**
|
|
3341
|
-
* Current version of the project state. It is changed when:
|
|
3342
|
-
* - new root file was added/removed
|
|
3343
|
-
* - edit happen in some file that is currently included in the project.
|
|
3344
|
-
* This property is different from projectStructureVersion since in most cases edits don't affect set of files in the project
|
|
3345
|
-
*/
|
|
3346
|
-
private projectStateVersion;
|
|
3347
3335
|
protected projectErrors: Diagnostic[] | undefined;
|
|
3348
3336
|
protected isInitialLoadPending: () => boolean;
|
|
3349
3337
|
private readonly cancellationToken;
|
|
@@ -4542,13 +4530,12 @@ declare namespace ts {
|
|
|
4542
4530
|
JSDocPropertyTag = 355,
|
|
4543
4531
|
JSDocThrowsTag = 356,
|
|
4544
4532
|
JSDocSatisfiesTag = 357,
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
Count = 364,
|
|
4533
|
+
SyntaxList = 358,
|
|
4534
|
+
NotEmittedStatement = 359,
|
|
4535
|
+
PartiallyEmittedExpression = 360,
|
|
4536
|
+
CommaListExpression = 361,
|
|
4537
|
+
SyntheticReferenceExpression = 362,
|
|
4538
|
+
Count = 363,
|
|
4552
4539
|
FirstAssignment = 64,
|
|
4553
4540
|
LastAssignment = 79,
|
|
4554
4541
|
FirstCompoundAssignment = 65,
|
|
@@ -4577,9 +4564,9 @@ declare namespace ts {
|
|
|
4577
4564
|
LastStatement = 259,
|
|
4578
4565
|
FirstNode = 166,
|
|
4579
4566
|
FirstJSDocNode = 316,
|
|
4580
|
-
LastJSDocNode =
|
|
4567
|
+
LastJSDocNode = 357,
|
|
4581
4568
|
FirstJSDocTagNode = 334,
|
|
4582
|
-
LastJSDocTagNode =
|
|
4569
|
+
LastJSDocTagNode = 357,
|
|
4583
4570
|
}
|
|
4584
4571
|
type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;
|
|
4585
4572
|
type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;
|
|
@@ -6029,7 +6016,7 @@ declare namespace ts {
|
|
|
6029
6016
|
type NamedExportBindings = NamespaceExport | NamedExports;
|
|
6030
6017
|
interface ImportClause extends NamedDeclaration {
|
|
6031
6018
|
readonly kind: SyntaxKind.ImportClause;
|
|
6032
|
-
readonly parent: ImportDeclaration
|
|
6019
|
+
readonly parent: ImportDeclaration;
|
|
6033
6020
|
readonly isTypeOnly: boolean;
|
|
6034
6021
|
readonly name?: Identifier;
|
|
6035
6022
|
readonly namedBindings?: NamedImportBindings;
|
|
@@ -6385,12 +6372,6 @@ declare namespace ts {
|
|
|
6385
6372
|
readonly kind: SyntaxKind.JSDocSatisfiesTag;
|
|
6386
6373
|
readonly typeExpression: JSDocTypeExpression;
|
|
6387
6374
|
}
|
|
6388
|
-
interface JSDocImportTypeTag extends JSDocTag {
|
|
6389
|
-
readonly kind: SyntaxKind.JSDocImportTypeTag;
|
|
6390
|
-
readonly parent: JSDoc;
|
|
6391
|
-
readonly importClause: ImportClause;
|
|
6392
|
-
readonly moduleSpecifier: Expression;
|
|
6393
|
-
}
|
|
6394
6375
|
enum FlowFlags {
|
|
6395
6376
|
Unreachable = 1,
|
|
6396
6377
|
Start = 2,
|
|
@@ -8355,8 +8336,6 @@ declare namespace ts {
|
|
|
8355
8336
|
updateJSDocThrowsTag(node: JSDocThrowsTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment> | undefined): JSDocThrowsTag;
|
|
8356
8337
|
createJSDocSatisfiesTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocSatisfiesTag;
|
|
8357
8338
|
updateJSDocSatisfiesTag(node: JSDocSatisfiesTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocSatisfiesTag;
|
|
8358
|
-
createJSDocImportTypeTag(tagName: Identifier | undefined, importClause: ImportClause, moduleSpecifier: Expression, comment?: string | NodeArray<JSDocComment>): JSDocImportTypeTag;
|
|
8359
|
-
updateJSDocImportTypeTag(node: JSDocImportTypeTag, tagName: Identifier | undefined, importClause: ImportClause, moduleSpecifier: Expression, comment: string | NodeArray<JSDocComment> | undefined): JSDocImportTypeTag;
|
|
8360
8339
|
createJSDocText(text: string): JSDocText;
|
|
8361
8340
|
updateJSDocText(node: JSDocText, text: string): JSDocText;
|
|
8362
8341
|
createJSDocComment(comment?: string | NodeArray<JSDocComment> | undefined, tags?: readonly JSDocTag[] | undefined): JSDoc;
|
|
@@ -9584,7 +9563,6 @@ declare namespace ts {
|
|
|
9584
9563
|
function isJSDocImplementsTag(node: Node): node is JSDocImplementsTag;
|
|
9585
9564
|
function isJSDocSatisfiesTag(node: Node): node is JSDocSatisfiesTag;
|
|
9586
9565
|
function isJSDocThrowsTag(node: Node): node is JSDocThrowsTag;
|
|
9587
|
-
function isJSDocImportTypeTag(node: Node): node is JSDocImportTypeTag;
|
|
9588
9566
|
function isQuestionOrExclamationToken(node: Node): node is QuestionToken | ExclamationToken;
|
|
9589
9567
|
function isIdentifierOrThisTypeNode(node: Node): node is Identifier | ThisTypeNode;
|
|
9590
9568
|
function isReadonlyKeywordOrPlusOrMinusToken(node: Node): node is ReadonlyKeyword | PlusToken | MinusToken;
|