Skip to content

Commit 1e7c774

Browse files
committed
Update symbol baselines because of things in lib.d.ts moving around
1 parent 059bb18 commit 1e7c774

31 files changed

+205
-205
lines changed

tests/baselines/reference/emitArrowFunctionWhenUsingArguments14_ES6.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function f() {
55

66
if (Math.random()) {
77
>Math.random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
8-
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1686, 60))
8+
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1691, 60))
99
>random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
1010

1111
let arguments = 100;

tests/baselines/reference/emitArrowFunctionWhenUsingArguments15_ES6.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function f() {
88

99
if (Math.random()) {
1010
>Math.random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
11-
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1686, 60))
11+
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1691, 60))
1212
>random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
1313

1414
const arguments = 100;

tests/baselines/reference/emitArrowFunctionWhenUsingArguments16_ES6.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function f() {
88

99
if (Math.random()) {
1010
>Math.random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
11-
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1686, 60))
11+
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1691, 60))
1212
>random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
1313

1414
return () => arguments[0];

tests/baselines/reference/emitArrowFunctionWhenUsingArguments17_ES6.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function f() {
99

1010
if (Math.random()) {
1111
>Math.random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
12-
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1686, 60))
12+
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1691, 60))
1313
>random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
1414

1515
return () => arguments[0];

tests/baselines/reference/emitArrowFunctionWhenUsingArguments18_ES6.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function f() {
99

1010
if (Math.random()) {
1111
>Math.random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
12-
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1686, 60))
12+
>Math : Symbol(Math, Decl(lib.d.ts, 522, 1), Decl(lib.d.ts, 633, 11), Decl(lib.d.ts, 1691, 60))
1313
>random : Symbol(Math.random, Decl(lib.d.ts, 608, 38))
1414

1515
return () => arguments;

tests/baselines/reference/for-of37.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== tests/cases/conformance/es6/for-ofStatements/for-of37.ts ===
22
var map = new Map([["", true]]);
33
>map : Symbol(map, Decl(for-of37.ts, 0, 3))
4-
>Map : Symbol(Map, Decl(lib.d.ts, 1859, 1), Decl(lib.d.ts, 1881, 11))
4+
>Map : Symbol(Map, Decl(lib.d.ts, 1864, 1), Decl(lib.d.ts, 1886, 11))
55

66
for (var v of map) {
77
>v : Symbol(v, Decl(for-of37.ts, 1, 8))

tests/baselines/reference/for-of38.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== tests/cases/conformance/es6/for-ofStatements/for-of38.ts ===
22
var map = new Map([["", true]]);
33
>map : Symbol(map, Decl(for-of38.ts, 0, 3))
4-
>Map : Symbol(Map, Decl(lib.d.ts, 1859, 1), Decl(lib.d.ts, 1881, 11))
4+
>Map : Symbol(Map, Decl(lib.d.ts, 1864, 1), Decl(lib.d.ts, 1886, 11))
55

66
for (var [k, v] of map) {
77
>k : Symbol(k, Decl(for-of38.ts, 1, 10))

tests/baselines/reference/for-of40.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== tests/cases/conformance/es6/for-ofStatements/for-of40.ts ===
22
var map = new Map([["", true]]);
33
>map : Symbol(map, Decl(for-of40.ts, 0, 3))
4-
>Map : Symbol(Map, Decl(lib.d.ts, 1859, 1), Decl(lib.d.ts, 1881, 11))
4+
>Map : Symbol(Map, Decl(lib.d.ts, 1864, 1), Decl(lib.d.ts, 1886, 11))
55

66
for (var [k = "", v = false] of map) {
77
>k : Symbol(k, Decl(for-of40.ts, 1, 10))

tests/baselines/reference/for-of45.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var k: string, v: boolean;
55

66
var map = new Map([["", true]]);
77
>map : Symbol(map, Decl(for-of45.ts, 1, 3))
8-
>Map : Symbol(Map, Decl(lib.d.ts, 1859, 1), Decl(lib.d.ts, 1881, 11))
8+
>Map : Symbol(Map, Decl(lib.d.ts, 1864, 1), Decl(lib.d.ts, 1886, 11))
99

1010
for ([k = "", v = false] of map) {
1111
>k : Symbol(k, Decl(for-of45.ts, 0, 3))

tests/baselines/reference/for-of50.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== tests/cases/conformance/es6/for-ofStatements/for-of50.ts ===
22
var map = new Map([["", true]]);
33
>map : Symbol(map, Decl(for-of50.ts, 0, 3))
4-
>Map : Symbol(Map, Decl(lib.d.ts, 1859, 1), Decl(lib.d.ts, 1881, 11))
4+
>Map : Symbol(Map, Decl(lib.d.ts, 1864, 1), Decl(lib.d.ts, 1886, 11))
55

66
for (const [k, v] of map) {
77
>k : Symbol(k, Decl(for-of50.ts, 1, 12))

0 commit comments

Comments
 (0)