Skip to content

Commit f6ac74d

Browse files
committed
Update LKG
1 parent 902d3b7 commit f6ac74d

31 files changed

+13093
-8938
lines changed

lib/cs/diagnosticMessages.generated.json

Lines changed: 41 additions & 38 deletions
Large diffs are not rendered by default.

lib/de/diagnosticMessages.generated.json

Lines changed: 30 additions & 27 deletions
Large diffs are not rendered by default.

lib/enu/diagnosticMessages.generated.json.lcg

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,6 +1341,12 @@
13411341
</Str>
13421342
<Disp Icon="Str" />
13431343
</Item>
1344+
<Item ItemId=";Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclas_2720" ItemType="0" PsrId="306" Leaf="true">
1345+
<Str Cat="Text">
1346+
<Val><![CDATA[Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?]]></Val>
1347+
</Str>
1348+
<Disp Icon="Str" />
1349+
</Item>
13441350
<Item ItemId=";Class_0_incorrectly_implements_interface_1_2420" ItemType="0" PsrId="306" Leaf="true">
13451351
<Str Cat="Text">
13461352
<Val><![CDATA[Class '{0}' incorrectly implements interface '{1}'.]]></Val>
@@ -2241,12 +2247,6 @@
22412247
</Str>
22422248
<Disp Icon="Str" />
22432249
</Item>
2244-
<Item ItemId=";File_specification_cannot_contain_multiple_recursive_directory_wildcards_Asterisk_Asterisk_Colon_0_5011" ItemType="0" PsrId="306" Leaf="true">
2245-
<Str Cat="Text">
2246-
<Val><![CDATA[File specification cannot contain multiple recursive directory wildcards ('**'): '{0}'.]]></Val>
2247-
</Str>
2248-
<Disp Icon="Str" />
2249-
</Item>
22502250
<Item ItemId=";File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0_5010" ItemType="0" PsrId="306" Leaf="true">
22512251
<Str Cat="Text">
22522252
<Val><![CDATA[File specification cannot end in a recursive directory wildcard ('**'): '{0}'.]]></Val>
@@ -3063,6 +3063,12 @@
30633063
</Str>
30643064
<Disp Icon="Str" />
30653065
</Item>
3066+
<Item ItemId=";Multiple_consecutive_numeric_separators_are_not_permitted_6189" ItemType="0" PsrId="306" Leaf="true">
3067+
<Str Cat="Text">
3068+
<Val><![CDATA[Multiple consecutive numeric separators are not permitted.]]></Val>
3069+
</Str>
3070+
<Disp Icon="Str" />
3071+
</Item>
30663072
<Item ItemId=";Multiple_constructor_implementations_are_not_allowed_2392" ItemType="0" PsrId="306" Leaf="true">
30673073
<Str Cat="Text">
30683074
<Val><![CDATA[Multiple constructor implementations are not allowed.]]></Val>
@@ -3123,6 +3129,12 @@
31233129
</Str>
31243130
<Disp Icon="Str" />
31253131
</Item>
3132+
<Item ItemId=";Numeric_separators_are_not_allowed_here_6188" ItemType="0" PsrId="306" Leaf="true">
3133+
<Str Cat="Text">
3134+
<Val><![CDATA[Numeric separators are not allowed here.]]></Val>
3135+
</Str>
3136+
<Disp Icon="Str" />
3137+
</Item>
31263138
<Item ItemId=";Object_is_possibly_null_2531" ItemType="0" PsrId="306" Leaf="true">
31273139
<Str Cat="Text">
31283140
<Val><![CDATA[Object is possibly 'null'.]]></Val>
@@ -4245,6 +4257,12 @@
42454257
</Str>
42464258
<Disp Icon="Str" />
42474259
</Item>
4260+
<Item ItemId=";Starting_compilation_in_watch_mode_6031" ItemType="0" PsrId="306" Leaf="true">
4261+
<Str Cat="Text">
4262+
<Val><![CDATA[Starting compilation in watch mode...]]></Val>
4263+
</Str>
4264+
<Disp Icon="Str" />
4265+
</Item>
42484266
<Item ItemId=";Statement_expected_1129" ItemType="0" PsrId="306" Leaf="true">
42494267
<Str Cat="Text">
42504268
<Val><![CDATA[Statement expected.]]></Val>

lib/es/diagnosticMessages.generated.json

Lines changed: 44 additions & 41 deletions
Large diffs are not rendered by default.

lib/fr/diagnosticMessages.generated.json

Lines changed: 45 additions & 42 deletions
Large diffs are not rendered by default.

lib/it/diagnosticMessages.generated.json

Lines changed: 50 additions & 47 deletions
Large diffs are not rendered by default.

lib/ja/diagnosticMessages.generated.json

Lines changed: 135 additions & 132 deletions
Large diffs are not rendered by default.

lib/ko/diagnosticMessages.generated.json

Lines changed: 50 additions & 47 deletions
Large diffs are not rendered by default.

lib/lib.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ interface Math {
570570
*/
571571
atan2(y: number, x: number): number;
572572
/**
573-
* Returns the smallest number greater than or equal to its numeric argument.
573+
* Returns the smallest integer greater than or equal to its numeric argument.
574574
* @param x A numeric expression.
575575
*/
576576
ceil(x: number): number;
@@ -585,7 +585,7 @@ interface Math {
585585
*/
586586
exp(x: number): number;
587587
/**
588-
* Returns the greatest number less than or equal to its numeric argument.
588+
* Returns the greatest integer less than or equal to its numeric argument.
589589
* @param x A numeric expression.
590590
*/
591591
floor(x: number): number;
@@ -1012,12 +1012,12 @@ interface ReadonlyArray<T> {
10121012
* Combines two or more arrays.
10131013
* @param items Additional items to add to the end of array1.
10141014
*/
1015-
concat(...items: ReadonlyArray<T>[]): T[];
1015+
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
10161016
/**
10171017
* Combines two or more arrays.
10181018
* @param items Additional items to add to the end of array1.
10191019
*/
1020-
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1020+
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
10211021
/**
10221022
* Adds all the elements of an array separated by the specified separator string.
10231023
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
@@ -1133,12 +1133,12 @@ interface Array<T> {
11331133
* Combines two or more arrays.
11341134
* @param items Additional items to add to the end of array1.
11351135
*/
1136-
concat(...items: ReadonlyArray<T>[]): T[];
1136+
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
11371137
/**
11381138
* Combines two or more arrays.
11391139
* @param items Additional items to add to the end of array1.
11401140
*/
1141-
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1141+
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
11421142
/**
11431143
* Adds all the elements of an array separated by the specified separator string.
11441144
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.

lib/lib.es2015.iterable.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ interface ArrayConstructor {
7272
* Creates an array from an iterable object.
7373
* @param iterable An iterable object to convert to an array.
7474
*/
75-
from<T>(iterable: Iterable<T>): T[];
75+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
7676

7777
/**
7878
* Creates an array from an iterable object.
7979
* @param iterable An iterable object to convert to an array.
8080
* @param mapfn A mapping function to call on every element of the array.
8181
* @param thisArg Value of 'this' used to invoke the mapfn.
8282
*/
83-
from<T, U>(iterable: Iterable<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
83+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
8484
}
8585

8686
interface ReadonlyArray<T> {

0 commit comments

Comments
 (0)