Skip to content

Commit a2bef32

Browse files
committed
update baselines
1 parent 90c5e16 commit a2bef32

9 files changed

+24
-16
lines changed

tests/baselines/reference/bigintWithLib.types

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,26 +66,26 @@ stringVal = bigintVal.toLocaleString();
6666
>stringVal = bigintVal.toLocaleString() : string
6767
>stringVal : string
6868
>bigintVal.toLocaleString() : string
69-
>bigintVal.toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
69+
>bigintVal.toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
7070
>bigintVal : bigint
71-
>toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
71+
>toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
7272

7373
stringVal = bigintVal.toLocaleString('de-DE');
7474
>stringVal = bigintVal.toLocaleString('de-DE') : string
7575
>stringVal : string
7676
>bigintVal.toLocaleString('de-DE') : string
77-
>bigintVal.toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
77+
>bigintVal.toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
7878
>bigintVal : bigint
79-
>toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
79+
>toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
8080
>'de-DE' : "de-DE"
8181

8282
stringVal = bigintVal.toLocaleString('de-DE', { style: 'currency' });
8383
>stringVal = bigintVal.toLocaleString('de-DE', { style: 'currency' }) : string
8484
>stringVal : string
8585
>bigintVal.toLocaleString('de-DE', { style: 'currency' }) : string
86-
>bigintVal.toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
86+
>bigintVal.toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
8787
>bigintVal : bigint
88-
>toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
88+
>toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
8989
>'de-DE' : "de-DE"
9090
>{ style: 'currency' } : { style: string; }
9191
>style : string
@@ -95,9 +95,9 @@ stringVal = bigintVal.toLocaleString('de-DE', { style: 'currency', currency: 'EU
9595
>stringVal = bigintVal.toLocaleString('de-DE', { style: 'currency', currency: 'EUR' }) : string
9696
>stringVal : string
9797
>bigintVal.toLocaleString('de-DE', { style: 'currency', currency: 'EUR' }) : string
98-
>bigintVal.toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
98+
>bigintVal.toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
9999
>bigintVal : bigint
100-
>toLocaleString : (locales?: string, options?: BigIntToLocaleStringOptions) => string
100+
>toLocaleString : (locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions) => string
101101
>'de-DE' : "de-DE"
102102
>{ style: 'currency', currency: 'EUR' } : { style: string; currency: string; }
103103
>style : string

tests/baselines/reference/es2020IntlAPIs.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const count = 26254.39;
55

66
const date = new Date("2012-05-24");
77
>date : Symbol(date, Decl(es2020IntlAPIs.ts, 2, 5))
8-
>Date : Symbol(Date, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.scripthost.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
8+
>Date : Symbol(Date, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.scripthost.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --) ... and 1 more)
99

1010
function log(locale: string) {
1111
>log : Symbol(log, Decl(es2020IntlAPIs.ts, 2, 36))

tests/baselines/reference/reactJsxReactResolvedNodeNext.trace.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,9 @@
141141
"File 'package.json' does not exist according to earlier cached lookups.",
142142
"File '/package.json' does not exist according to earlier cached lookups.",
143143
"File 'package.json' does not exist according to earlier cached lookups.",
144+
"File '/package.json' does not exist according to earlier cached lookups.",
145+
"File 'package.json' does not exist according to earlier cached lookups.",
146+
"File '/package.json' does not exist according to earlier cached lookups.",
147+
"File 'package.json' does not exist according to earlier cached lookups.",
144148
"File '/package.json' does not exist according to earlier cached lookups."
145149
]

tests/baselines/reference/reactJsxReactResolvedNodeNextEsm.trace.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,9 @@
135135
"File 'package.json' does not exist according to earlier cached lookups.",
136136
"File '/package.json' does not exist according to earlier cached lookups.",
137137
"File 'package.json' does not exist according to earlier cached lookups.",
138+
"File '/package.json' does not exist according to earlier cached lookups.",
139+
"File 'package.json' does not exist according to earlier cached lookups.",
140+
"File '/package.json' does not exist according to earlier cached lookups.",
141+
"File 'package.json' does not exist according to earlier cached lookups.",
138142
"File '/package.json' does not exist according to earlier cached lookups."
139143
]

tests/baselines/reference/tsc/runWithoutArgs/initial-build/does-not-add-color-when-NO_COLOR-is-set.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ default: undefined
7878

7979
--lib
8080
Specify a set of bundled library declaration files that describe the target runtime environment.
81-
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
81+
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
8282
default: undefined
8383

8484
--allowJs

tests/baselines/reference/tsc/runWithoutArgs/initial-build/show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped-when-host-can't-provide-terminal-width.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ default: undefined
7878

7979
--lib
8080
Specify a set of bundled library declaration files that describe the target runtime environment.
81-
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
81+
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
8282
default: undefined
8383

8484
--allowJs

tests/baselines/reference/tsc/runWithoutArgs/initial-build/show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ default: undefined
7878

7979
--lib
8080
Specify a set of bundled library declaration files that describe the target runtime environment.
81-
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
81+
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, esnext, dom, dom.iterable, webworker, webworker.importscripts, webworker.iterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise/esnext.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array/esnext.array, es2022.error, es2022.object, es2022.string/esnext.string, esnext.intl
8282
default: undefined
8383

8484
--allowJs

tests/baselines/reference/typeGuardConstructorNarrowAny.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (var1.constructor === String) {
1212
}
1313
if (var1.constructor === Number) {
1414
>var1 : Symbol(var1, Decl(typeGuardConstructorNarrowAny.ts, 1, 3))
15-
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
15+
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2020.number.d.ts, --, --))
1616

1717
var1; // Number
1818
>var1 : Symbol(var1, Decl(typeGuardConstructorNarrowAny.ts, 1, 3))

tests/baselines/reference/typeGuardConstructorPrimitiveTypes.symbols

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (var1.constructor === Number) {
1616
>var1.constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --))
1717
>var1 : Symbol(var1, Decl(typeGuardConstructorPrimitiveTypes.ts, 1, 3))
1818
>constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --))
19-
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
19+
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2020.number.d.ts, --, --))
2020

2121
var1; // number
2222
>var1 : Symbol(var1, Decl(typeGuardConstructorPrimitiveTypes.ts, 1, 3))
@@ -62,7 +62,7 @@ if (var1.constructor === BigInt) {
6262
let var2: String | Number | Boolean | Symbol | BigInt;
6363
>var2 : Symbol(var2, Decl(typeGuardConstructorPrimitiveTypes.ts, 22, 3))
6464
>String : Symbol(String, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --) ... and 6 more)
65-
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
65+
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2020.number.d.ts, --, --))
6666
>Boolean : Symbol(Boolean, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
6767
>Symbol : Symbol(Symbol, Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(lib.es2019.symbol.d.ts, --, --))
6868
>BigInt : Symbol(BigInt, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --))
@@ -80,7 +80,7 @@ if (var2.constructor === Number) {
8080
>var2.constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --))
8181
>var2 : Symbol(var2, Decl(typeGuardConstructorPrimitiveTypes.ts, 22, 3))
8282
>constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --))
83-
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
83+
>Number : Symbol(Number, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2020.number.d.ts, --, --))
8484

8585
var2; // Number
8686
>var2 : Symbol(var2, Decl(typeGuardConstructorPrimitiveTypes.ts, 22, 3))

0 commit comments

Comments
 (0)