Skip to content

Commit 6e60a01

Browse files
Accepted baselines.
1 parent a51397e commit 6e60a01

5 files changed

Lines changed: 0 additions & 5 deletions

tests/baselines/reference/defaultExportsCannotMerge01.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ function Decl() {
3636
return 0;
3737
}
3838
exports.default = Decl;
39-
var Decl;
4039
(function (Decl) {
4140
Decl.x = 10;
4241
Decl.y = 20;

tests/baselines/reference/defaultExportsCannotMerge04.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
1818
function Foo() {
1919
}
2020
exports.default = Foo;
21-
var Foo;
2221
(function (Foo) {
2322
})(Foo || (Foo = {}));

tests/baselines/reference/reservedWords2.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ debugger;
3535
if ()
3636
;
3737
[1, 2];
38-
var ;
3938
(function () {
4039
})( || ( = {}));
4140
void {};

tests/baselines/reference/transformApi/transformsCorrectly.rewrittenNamespaceFollowingClass.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ class C {
44
}
55
}
66
C.bar = 20;
7-
var C;
87
(function (C) {
98
C.x = 10;
109
})(C || (C = {}));
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
class Foo {
22
}
3-
var Foo;
43
(function (Foo) {
54
;
65
})(Foo || (Foo = {}));

0 commit comments

Comments
 (0)