Skip to content

Commit 4337369

Browse files
committed
Update improved baselines
1 parent cc342d1 commit 4337369

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/baselines/reference/objectRestForOf.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ var __rest = (this && this.__rest) || function (s, e) {
3030
return t;
3131
};
3232
let array;
33-
for (var _a of array) {
34-
var { x } = _a, restOf = __rest(_a, ["x"]);
33+
for (var array_1 of array) {
34+
var { x } = array_1, restOf = __rest(array_1, ["x"]);
3535
[x, restOf];
3636
}
3737
let xx;
3838
let rrestOff;
39-
for (var _b of array) {
40-
({ x: xx } = _b, rrestOff = __rest(_b, ["x"]));
39+
for (var array_2 of array) {
40+
({ x: xx } = array_2, rrestOff = __rest(array_2, ["x"]));
4141
[xx, rrestOff];
4242
}
4343
for (const norest of array.map(a => (__assign({}, a, { x: 'a string' })))) {

0 commit comments

Comments
 (0)