Skip to content

Commit 992b6e0

Browse files
committed
test(transformer/typescript): override namespace/empty-removed test
1 parent b327319 commit 992b6e0

File tree

1 file changed

+37
-0
lines changed
  • tasks/transform_conformance/overrides/babel-plugin-transform-typescript/test/fixtures/namespace/empty-removed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
let a;
2+
(function(_a) {
3+
let c;
4+
(function(_c) {
5+
var x;
6+
})(c || (c = {}));
7+
})(a || (a = {}));
8+
let WithTypes;
9+
(function(_WithTypes) {
10+
let d;
11+
(function(_d) {})(d || (d = {}));
12+
})(WithTypes || (WithTypes = {}));
13+
let WithValues;
14+
(function(_WithValues) {
15+
let a;
16+
(function(_a2) {
17+
class A {}
18+
})(a || (a = {}));
19+
let b;
20+
(function(_b) {
21+
let B = /* @__PURE__ */ function(B) {
22+
return B;
23+
}({});
24+
})(b || (b = {}));
25+
let c;
26+
(function(_c2) {
27+
function C() {}
28+
})(c || (c = {}));
29+
let d;
30+
(function(_d2) {
31+
var D;
32+
})(d || (d = {}));
33+
let e;
34+
(function(_e) {
35+
E;
36+
})(e || (e = {}));
37+
})(WithValues || (WithValues = {}));

0 commit comments

Comments
 (0)