Skip to content

Commit f08ac66

Browse files
committed
Update LKG
1 parent e86b342 commit f08ac66

14 files changed

+2852
-566
lines changed

lib/enu/diagnosticMessages.generated.json.lcg

+18
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,12 @@
573573
</Str>
574574
<Disp Icon="Str" />
575575
</Item>
576+
<Item ItemId=";Add_async_modifier_to_containing_function_90029" ItemType="0" PsrId="306" Leaf="true">
577+
<Str Cat="Text">
578+
<Val><![CDATA[Add async modifier to containing function]]></Val>
579+
</Str>
580+
<Disp Icon="Str" />
581+
</Item>
576582
<Item ItemId=";Add_index_signature_for_property_0_90017" ItemType="0" PsrId="306" Leaf="true">
577583
<Str Cat="Text">
578584
<Val><![CDATA[Add index signature for property '{0}']]></Val>
@@ -1527,6 +1533,12 @@
15271533
</Str>
15281534
<Disp Icon="Str" />
15291535
</Item>
1536+
<Item ItemId=";Convert_to_ES6_module_95017" ItemType="0" PsrId="306" Leaf="true">
1537+
<Str Cat="Text">
1538+
<Val><![CDATA[Convert to ES6 module]]></Val>
1539+
</Str>
1540+
<Disp Icon="Str" />
1541+
</Item>
15301542
<Item ItemId=";Convert_to_default_import_95013" ItemType="0" PsrId="306" Leaf="true">
15311543
<Str Cat="Text">
15321544
<Val><![CDATA[Convert to default import]]></Val>
@@ -2967,6 +2979,12 @@
29672979
</Str>
29682980
<Disp Icon="Str" />
29692981
</Item>
2982+
<Item ItemId=";Mapped_object_type_implicitly_has_an_any_template_type_7039" ItemType="0" PsrId="306" Leaf="true">
2983+
<Str Cat="Text">
2984+
<Val><![CDATA[Mapped object type implicitly has an 'any' template type.]]></Val>
2985+
</Str>
2986+
<Disp Icon="Str" />
2987+
</Item>
29702988
<Item ItemId=";Member_0_implicitly_has_an_1_type_7008" ItemType="0" PsrId="306" Leaf="true">
29712989
<Str Cat="Text">
29722990
<Val><![CDATA[Member '{0}' implicitly has an '{1}' type.]]></Val>

lib/lib.es2015.collection.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ interface ReadonlySet<T> {
7878
readonly size: number;
7979
}
8080

81-
interface WeakSet<T> {
81+
interface WeakSet<T extends object> {
8282
add(value: T): this;
8383
delete(value: T): boolean;
8484
has(value: T): boolean;

lib/lib.es2015.iterable.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ interface SetConstructor {
200200
new <T>(iterable: Iterable<T>): Set<T>;
201201
}
202202

203-
interface WeakSet<T> { }
203+
interface WeakSet<T extends object> { }
204204

205205
interface WeakSetConstructor {
206206
new <T extends object>(iterable: Iterable<T>): WeakSet<T>;

lib/lib.es2015.symbol.wellknown.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ interface Set<T> {
138138
readonly [Symbol.toStringTag]: "Set";
139139
}
140140

141-
interface WeakSet<T> {
141+
interface WeakSet<T extends object> {
142142
readonly [Symbol.toStringTag]: "WeakSet";
143143
}
144144

lib/lib.es6.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -4704,7 +4704,7 @@ interface ReadonlySet<T> {
47044704
readonly size: number;
47054705
}
47064706

4707-
interface WeakSet<T> {
4707+
interface WeakSet<T extends object> {
47084708
add(value: T): this;
47094709
delete(value: T): boolean;
47104710
has(value: T): boolean;
@@ -4954,7 +4954,7 @@ interface SetConstructor {
49544954
new <T>(iterable: Iterable<T>): Set<T>;
49554955
}
49564956

4957-
interface WeakSet<T> { }
4957+
interface WeakSet<T extends object> { }
49584958

49594959
interface WeakSetConstructor {
49604960
new <T extends object>(iterable: Iterable<T>): WeakSet<T>;
@@ -5649,7 +5649,7 @@ interface Set<T> {
56495649
readonly [Symbol.toStringTag]: "Set";
56505650
}
56515651

5652-
interface WeakSet<T> {
5652+
interface WeakSet<T extends object> {
56535653
readonly [Symbol.toStringTag]: "WeakSet";
56545654
}
56555655

lib/tsc.js

+97-89
Large diffs are not rendered by default.

lib/tsserver.js

+627-112
Large diffs are not rendered by default.

lib/tsserverlibrary.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,7 @@ declare namespace ts {
901901
kind: SyntaxKind.ArrowFunction;
902902
equalsGreaterThanToken: EqualsGreaterThanToken;
903903
body: ConciseBody;
904+
name: never;
904905
}
905906
interface LiteralLikeNode extends Node {
906907
text: string;
@@ -1362,6 +1363,7 @@ declare namespace ts {
13621363
interface ExportDeclaration extends DeclarationStatement {
13631364
kind: SyntaxKind.ExportDeclaration;
13641365
parent?: SourceFile | ModuleBlock;
1366+
/** Will not be assigned in the case of `export * from "foo";` */
13651367
exportClause?: NamedExports;
13661368
/** If this is not a StringLiteral it will be a grammar error. */
13671369
moduleSpecifier?: Expression;
@@ -3288,7 +3290,7 @@ declare namespace ts {
32883290
declare namespace ts {
32893291
function createNodeArray<T extends Node>(elements?: ReadonlyArray<T>, hasTrailingComma?: boolean): NodeArray<T>;
32903292
/** If a node is passed, creates a string literal whose source text is read from a source node during emit. */
3291-
function createLiteral(value: string | StringLiteral | NumericLiteral | Identifier): StringLiteral;
3293+
function createLiteral(value: string | StringLiteral | NoSubstitutionTemplateLiteral | NumericLiteral | Identifier): StringLiteral;
32923294
function createLiteral(value: number): NumericLiteral;
32933295
function createLiteral(value: boolean): BooleanLiteral;
32943296
function createLiteral(value: string | number | boolean): PrimaryExpression;

0 commit comments

Comments
 (0)