typescript 5.7.0-dev.20240830 → 5.7.0-dev.20240831
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 +329 -58
- package/lib/typescript.d.ts +9 -4
- package/lib/typescript.js +477 -62
- package/package.json +17 -17
package/lib/typescript.d.ts
CHANGED
|
@@ -3983,10 +3983,11 @@ declare namespace ts {
|
|
|
3983
3983
|
JSDocImportTag = 351,
|
|
3984
3984
|
SyntaxList = 352,
|
|
3985
3985
|
NotEmittedStatement = 353,
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3986
|
+
NotEmittedTypeElement = 354,
|
|
3987
|
+
PartiallyEmittedExpression = 355,
|
|
3988
|
+
CommaListExpression = 356,
|
|
3989
|
+
SyntheticReferenceExpression = 357,
|
|
3990
|
+
Count = 358,
|
|
3990
3991
|
FirstAssignment = 64,
|
|
3991
3992
|
LastAssignment = 79,
|
|
3992
3993
|
FirstCompoundAssignment = 65,
|
|
@@ -5212,6 +5213,9 @@ declare namespace ts {
|
|
|
5212
5213
|
interface NotEmittedStatement extends Statement {
|
|
5213
5214
|
readonly kind: SyntaxKind.NotEmittedStatement;
|
|
5214
5215
|
}
|
|
5216
|
+
interface NotEmittedTypeElement extends TypeElement {
|
|
5217
|
+
readonly kind: SyntaxKind.NotEmittedTypeElement;
|
|
5218
|
+
}
|
|
5215
5219
|
/**
|
|
5216
5220
|
* A list of comma-separated expressions. This node is only created by transformations.
|
|
5217
5221
|
*/
|
|
@@ -7813,6 +7817,7 @@ declare namespace ts {
|
|
|
7813
7817
|
createSourceFile(statements: readonly Statement[], endOfFileToken: EndOfFileToken, flags: NodeFlags): SourceFile;
|
|
7814
7818
|
updateSourceFile(node: SourceFile, statements: readonly Statement[], isDeclarationFile?: boolean, referencedFiles?: readonly FileReference[], typeReferences?: readonly FileReference[], hasNoDefaultLib?: boolean, libReferences?: readonly FileReference[]): SourceFile;
|
|
7815
7819
|
createNotEmittedStatement(original: Node): NotEmittedStatement;
|
|
7820
|
+
createNotEmittedTypeElement(): NotEmittedTypeElement;
|
|
7816
7821
|
createPartiallyEmittedExpression(expression: Expression, original?: Node): PartiallyEmittedExpression;
|
|
7817
7822
|
updatePartiallyEmittedExpression(node: PartiallyEmittedExpression, expression: Expression): PartiallyEmittedExpression;
|
|
7818
7823
|
createCommaListExpression(elements: readonly Expression[]): CommaListExpression;
|