Skip to content

Commit b355412

Browse files
ahejlsbergmhegazy
authored andcommitted
Accepting new baselines
1 parent de8b2fa commit b355412

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/baselines/reference/arrayLiteralSpread.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ function f1() {
4141
var b;
4242
}
4343
function f2() {
44-
var a = [].slice().slice().slice().slice().slice();
45-
var b = [5].slice().slice().slice().slice().slice();
44+
var a = [];
45+
var b = [5];
4646
}

tests/baselines/reference/arrayLiterals2ES5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ var d3 = temp1.slice();
9999
var d4 = temp.concat(temp1);
100100
var d5 = temp3.slice();
101101
var d6 = temp4.slice();
102-
var d7 = temp1.slice().slice();
102+
var d7 = temp1.slice();
103103
var d8 = [temp1.slice()];
104104
var d9 = [temp1.slice()].concat(["hello"]);

0 commit comments

Comments
 (0)