mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 21:54:36 +03:00
fix(es/minifier): Don't drop arguments to an IIFE without body (#4419)
This commit is contained in:
parent
9a80ea2e7c
commit
aa19b65f9c
@ -1,5 +1,14 @@
|
||||
class clodule1 {
|
||||
}
|
||||
clodule1 || (clodule1 = {});
|
||||
class clodule2 {
|
||||
}
|
||||
clodule2 || (clodule2 = {});
|
||||
class clodule3 {
|
||||
}
|
||||
(clodule3 || (clodule3 = {})).y = {
|
||||
id: T
|
||||
};
|
||||
class clodule4 {
|
||||
}
|
||||
clodule4 || (clodule4 = {});
|
||||
|
@ -2,7 +2,9 @@ import * as swcHelpers from "@swc/helpers";
|
||||
var clodule1 = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, clodule1);
|
||||
}, clodule2 = function() {
|
||||
};
|
||||
clodule1 || (clodule1 = {});
|
||||
var clodule2 = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, clodule2);
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
var A;
|
||||
(A || (A = {})).Point = class {
|
||||
class Point {
|
||||
static Origin() {
|
||||
return {
|
||||
x: 0,
|
||||
@ -9,4 +9,18 @@ var A;
|
||||
constructor(x, y){
|
||||
this.x = x, this.y = y;
|
||||
}
|
||||
};
|
||||
}
|
||||
Point || (Point = {}), function(A1) {
|
||||
class Point1 {
|
||||
static Origin() {
|
||||
return {
|
||||
x: 0,
|
||||
y: 0
|
||||
};
|
||||
}
|
||||
constructor(x, y){
|
||||
this.x = x, this.y = y;
|
||||
}
|
||||
}
|
||||
A1.Point = Point1, Point1 = A1.Point || (A1.Point = {});
|
||||
}(A || (A = {}));
|
||||
|
@ -11,7 +11,7 @@ var A, Point = function() {
|
||||
};
|
||||
}, Point;
|
||||
}();
|
||||
!function(A1) {
|
||||
Point || (Point = {}), function(A1) {
|
||||
var Point = function() {
|
||||
"use strict";
|
||||
function Point(x, y) {
|
||||
@ -24,5 +24,5 @@ var A, Point = function() {
|
||||
};
|
||||
}, Point;
|
||||
}();
|
||||
A1.Point = Point;
|
||||
A1.Point = Point, Point = A1.Point || (A1.Point = {});
|
||||
}(A || (A = {}));
|
||||
|
@ -1,19 +1,20 @@
|
||||
var A;
|
||||
(class {
|
||||
class Point {
|
||||
constructor(x, y){
|
||||
this.x = x, this.y = y;
|
||||
}
|
||||
}).Origin = {
|
||||
}
|
||||
Point.Origin = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, function(A1) {
|
||||
class Point {
|
||||
}, Point || (Point = {}), function(A1) {
|
||||
class Point1 {
|
||||
constructor(x, y){
|
||||
this.x = x, this.y = y;
|
||||
}
|
||||
}
|
||||
Point.Origin = {
|
||||
Point1.Origin = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, A1.Point = Point;
|
||||
}, A1.Point = Point1, Point1 = A1.Point || (A1.Point = {});
|
||||
}(A || (A = {}));
|
||||
|
@ -6,7 +6,7 @@ var A, Point = function(x, y) {
|
||||
Point.Origin = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, function(A1) {
|
||||
}, Point || (Point = {}), function(A1) {
|
||||
var Point1 = function(x, y) {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, Point1), this.x = x, this.y = y;
|
||||
@ -14,5 +14,5 @@ Point.Origin = {
|
||||
Point1.Origin = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, A1.Point = Point1;
|
||||
}, A1.Point = Point1, Point1 = A1.Point || (A1.Point = {});
|
||||
}(A || (A = {}));
|
||||
|
@ -1,9 +1,10 @@
|
||||
var A, X;
|
||||
(A || (A = {})).Point = class {
|
||||
}, function(X1) {
|
||||
}, A || (A = {}), function(X1) {
|
||||
var Y;
|
||||
((Y = X1.Y || (X1.Y = {})).Z || (Y.Z = {})).Line = class {
|
||||
};
|
||||
}(X || (X = {})), function(X2) {
|
||||
X2.Y || (X2.Y = {});
|
||||
var Y;
|
||||
(Y = X2.Y || (X2.Y = {})).Z || (Y.Z = {});
|
||||
}(X || (X = {}));
|
||||
|
@ -0,0 +1,5 @@
|
||||
var M2;
|
||||
!function(M2) {
|
||||
let E;
|
||||
E || (E = {});
|
||||
}(M2 || (M2 = {}));
|
@ -0,0 +1,5 @@
|
||||
var M2;
|
||||
!function(M2) {
|
||||
var E;
|
||||
E || (E = {});
|
||||
}(M2 || (M2 = {}));
|
@ -1,5 +1,7 @@
|
||||
export class C {
|
||||
m() {}
|
||||
m() {
|
||||
this.assets;
|
||||
}
|
||||
constructor(){
|
||||
this.assets = {};
|
||||
}
|
||||
|
@ -4,5 +4,7 @@ export var C = function() {
|
||||
function C() {
|
||||
swcHelpers.classCallCheck(this, C), this.assets = {};
|
||||
}
|
||||
return C.prototype.m = function() {}, C;
|
||||
return C.prototype.m = function() {
|
||||
this.assets;
|
||||
}, C;
|
||||
}();
|
||||
|
@ -1,13 +1,13 @@
|
||||
var Example1, Example2, Example3, Example4, Example5, GH14865, GH12052;
|
||||
var Example1, Example2, Example3, Example4, Example5, GH14865, GH30170, GH12052, GH18421, GH15907, GH20889, GH39357;
|
||||
Example1 || (Example1 = {}), t = s, Example2 || (Example2 = {}), t = s, Example3 || (Example3 = {}), t = s, Example4 || (Example4 = {}), t = s, Example5 || (Example5 = {}), t = s, function(GH14865) {
|
||||
let b;
|
||||
b.type, b = {
|
||||
type: "A",
|
||||
data: "whatevs"
|
||||
};
|
||||
}(GH14865 || (GH14865 = {})), function(GH12052) {
|
||||
}(GH14865 || (GH14865 = {})), GH30170 || (GH30170 = {}), function(GH12052) {
|
||||
let good = {
|
||||
type: void 0
|
||||
};
|
||||
good.type = "categorical";
|
||||
}(GH12052 || (GH12052 = {}));
|
||||
}(GH12052 || (GH12052 = {})), GH18421 || (GH18421 = {}), GH15907 || (GH15907 = {}), GH20889 || (GH20889 = {}), GH39357 || (GH39357 = {});
|
||||
|
@ -1,13 +1,13 @@
|
||||
var Example1, Example2, Example3, Example4, Example5, GH14865, GH12052;
|
||||
var Example1, Example2, Example3, Example4, Example5, GH14865, GH30170, GH12052, GH18421, GH15907, GH20889, GH39357;
|
||||
Example1 || (Example1 = {}), t = s, Example2 || (Example2 = {}), t = s, Example3 || (Example3 = {}), t = s, Example4 || (Example4 = {}), t = s, Example5 || (Example5 = {}), t = s, function(GH14865) {
|
||||
var b;
|
||||
b.type, b = {
|
||||
type: "A",
|
||||
data: "whatevs"
|
||||
};
|
||||
}(GH14865 || (GH14865 = {})), function(GH12052) {
|
||||
}(GH14865 || (GH14865 = {})), GH30170 || (GH30170 = {}), function(GH12052) {
|
||||
var getAxisType = function() {
|
||||
return "categorical";
|
||||
};
|
||||
getAxisType(), void 0 = getAxisType();
|
||||
}(GH12052 || (GH12052 = {}));
|
||||
}(GH12052 || (GH12052 = {})), GH18421 || (GH18421 = {}), GH15907 || (GH15907 = {}), GH20889 || (GH20889 = {}), GH39357 || (GH39357 = {});
|
||||
|
@ -0,0 +1,2 @@
|
||||
var ClassTypeParam, GenericSignaturesInvalid, GenericSignaturesValid;
|
||||
ClassTypeParam || (ClassTypeParam = {}), GenericSignaturesInvalid || (GenericSignaturesInvalid = {}), GenericSignaturesValid || (GenericSignaturesValid = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var JustStrings, NumbersAndStrings;
|
||||
JustStrings || (JustStrings = {}), NumbersAndStrings || (NumbersAndStrings = {});
|
@ -1,5 +1,5 @@
|
||||
var ObjectTypes;
|
||||
!function(ObjectTypes) {
|
||||
var SimpleTypes, ObjectTypes;
|
||||
SimpleTypes || (SimpleTypes = {}), function(ObjectTypes) {
|
||||
var t, t2, b, a2 = {
|
||||
foo: a2
|
||||
}, b2 = {
|
||||
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -20,4 +20,14 @@ swcHelpers.asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||
return _ctx.stop();
|
||||
}
|
||||
}, _callee);
|
||||
})), swcHelpers.asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||
return regeneratorRuntime.wrap(function(_ctx) {
|
||||
for(;;)switch(_ctx.prev = _ctx.next){
|
||||
case 0:
|
||||
return _ctx.abrupt("return", 0);
|
||||
case 1:
|
||||
case "end":
|
||||
return _ctx.stop();
|
||||
}
|
||||
}, _callee);
|
||||
}));
|
||||
|
@ -0,0 +1,2 @@
|
||||
var Errors;
|
||||
Errors || (Errors = {});
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -1 +1,3 @@
|
||||
var M;
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
M || (M = {});
|
||||
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -0,0 +1,2 @@
|
||||
var Errors;
|
||||
Errors || (Errors = {});
|
@ -0,0 +1,2 @@
|
||||
var test;
|
||||
test || (test = {});
|
@ -1,6 +1,6 @@
|
||||
var E, F;
|
||||
var E, F, Others;
|
||||
!function(E) {
|
||||
E[E.A = 0] = "A";
|
||||
}(E || (E = {})), function(F) {
|
||||
F[F.B = 0] = "B";
|
||||
}(F || (F = {})), E.A, F.B;
|
||||
}(F || (F = {})), E.A, F.B, Others || (Others = {});
|
||||
|
@ -1 +1,2 @@
|
||||
export var N;
|
||||
N || (N = {});
|
||||
|
@ -1 +1,2 @@
|
||||
export var N;
|
||||
N || (N = {});
|
||||
|
@ -1 +1,2 @@
|
||||
export var N;
|
||||
N || (N = {});
|
||||
|
@ -1 +1,2 @@
|
||||
export var N;
|
||||
N || (N = {});
|
||||
|
@ -1,5 +1,5 @@
|
||||
var A, D, E, F;
|
||||
(A || (A = {})).x = 12, (D || (D = {})).yes = function() {
|
||||
var A, B, C, D, E, F;
|
||||
(A || (A = {})).x = 12, B || (B = {}), C || (C = {}), (D || (D = {})).yes = function() {
|
||||
return !0;
|
||||
}, function(E1) {
|
||||
var Color;
|
||||
@ -9,4 +9,6 @@ var A, D, E, F;
|
||||
var Color;
|
||||
let Color1;
|
||||
(Color = Color1 || (Color1 = {}))[Color.Red = 0] = "Red";
|
||||
let M;
|
||||
M || (M = {});
|
||||
}(F || (F = {}));
|
||||
|
@ -1,18 +1,19 @@
|
||||
var A, D, E, F;
|
||||
var A, B, C, D, E, F;
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
(A || (A = {})).x = 12, (D || (D = {})).yes = function() {
|
||||
(A || (A = {})).x = 12, B || (B = {}), C || (C = {}), (D || (D = {})).yes = function() {
|
||||
return !0;
|
||||
}, function(E1) {
|
||||
(Color = E1.Color || (E1.Color = {}))[Color.Red = 0] = "Red", E1.fn = function() {};
|
||||
var Color, C = function() {
|
||||
var Color, C1 = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, C);
|
||||
swcHelpers.classCallCheck(this, C1);
|
||||
};
|
||||
E1.C = C, (E1.M || (E1.M = {})).x = 42;
|
||||
E1.C = C1, (E1.M || (E1.M = {})).x = 42;
|
||||
}(E || (E = {})), function(F) {
|
||||
(Color1 = Color || (Color = {}))[Color1.Red = 0] = "Red";
|
||||
var Color, Color1, C = function() {
|
||||
var Color, M, Color1, C2 = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, C);
|
||||
swcHelpers.classCallCheck(this, C2);
|
||||
};
|
||||
M || (M = {});
|
||||
}(F || (F = {}));
|
||||
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -1,7 +1,7 @@
|
||||
class Base {
|
||||
}
|
||||
new Base();
|
||||
var x193, x194, x195, x196, x197, x198, x199, x200, x201, x202, x203, x204, d1 = new class extends Base {
|
||||
var x181, x182, x183, x184, x185, x186, x187, x188, x189, x190, x191, x192, x193, x194, x195, x196, x197, x198, x199, x200, x201, x202, x203, x204, d1 = new class extends Base {
|
||||
}(), d2 = new class extends Base {
|
||||
}();
|
||||
(class {
|
||||
@ -184,7 +184,7 @@ var x193, x194, x195, x196, x197, x198, x199, x200, x201, x202, x203, x204, d1 =
|
||||
d1,
|
||||
d2
|
||||
]
|
||||
}, (x193 || (x193 = {})).t = ()=>[
|
||||
}, x181 || (x181 = {}), x182 || (x182 = {}), x183 || (x183 = {}), x184 || (x184 = {}), x185 || (x185 = {}), x186 || (x186 = {}), x187 || (x187 = {}), x188 || (x188 = {}), x189 || (x189 = {}), x190 || (x190 = {}), x191 || (x191 = {}), x192 || (x192 = {}), (x193 || (x193 = {})).t = ()=>[
|
||||
d1,
|
||||
d2
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
var x193, x194, x195, x196, x197, x198, x199, x200, x201, x202, x203, x204, Base = function() {
|
||||
var x181, x182, x183, x184, x185, x186, x187, x188, x189, x190, x191, x192, x193, x194, x195, x196, x197, x198, x199, x200, x201, x202, x203, x204, Base = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, Base);
|
||||
}, Derived1 = function(Base1) {
|
||||
@ -865,7 +865,7 @@ var x85 = function() {
|
||||
};
|
||||
swcHelpers.classCallCheck(this, x120), this.parm = parm;
|
||||
};
|
||||
(x193 || (x193 = {})).t = function() {
|
||||
x181 || (x181 = {}), x182 || (x182 = {}), x183 || (x183 = {}), x184 || (x184 = {}), x185 || (x185 = {}), x186 || (x186 = {}), x187 || (x187 = {}), x188 || (x188 = {}), x189 || (x189 = {}), x190 || (x190 = {}), x191 || (x191 = {}), x192 || (x192 = {}), (x193 || (x193 = {})).t = function() {
|
||||
return [
|
||||
d1,
|
||||
d2
|
||||
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -8,7 +8,7 @@ function f2(a) {}
|
||||
function f3(y, x) {
|
||||
return y(null);
|
||||
}
|
||||
f2({
|
||||
new Derived(), new Derived2(), f2({
|
||||
x: new Derived(),
|
||||
y: new Derived2()
|
||||
}), f2({
|
||||
|
@ -23,7 +23,7 @@ function f2(a) {}
|
||||
function f3(y, x) {
|
||||
return y(null);
|
||||
}
|
||||
f2({
|
||||
new Derived(), new Derived2(), f2({
|
||||
x: new Derived(),
|
||||
y: new Derived2()
|
||||
}), f2({
|
||||
|
@ -0,0 +1,2 @@
|
||||
var NonGenericParameter, GenericParameter;
|
||||
NonGenericParameter || (NonGenericParameter = {}), GenericParameter || (GenericParameter = {});
|
@ -1,5 +1,5 @@
|
||||
var GenericParameter;
|
||||
!function(GenericParameter) {
|
||||
var NonGenericParameter, GenericParameter;
|
||||
NonGenericParameter || (NonGenericParameter = {}), function(GenericParameter) {
|
||||
var c, foo7 = function(x, cb) {
|
||||
return cb;
|
||||
};
|
||||
|
@ -1,8 +1,8 @@
|
||||
var NonGenericParameter;
|
||||
var NonGenericParameter, GenericParameter;
|
||||
!function(NonGenericParameter) {
|
||||
var b;
|
||||
function foo4(cb) {
|
||||
return new cb(null);
|
||||
}
|
||||
foo4(void 0), foo4(b);
|
||||
}(NonGenericParameter || (NonGenericParameter = {}));
|
||||
}(NonGenericParameter || (NonGenericParameter = {})), GenericParameter || (GenericParameter = {});
|
||||
|
@ -0,0 +1,2 @@
|
||||
var NonGenericParameter, GenericParameter;
|
||||
NonGenericParameter || (NonGenericParameter = {}), GenericParameter || (GenericParameter = {});
|
@ -0,0 +1,2 @@
|
||||
var NonGenericParameter, GenericParameter;
|
||||
NonGenericParameter || (NonGenericParameter = {}), GenericParameter || (GenericParameter = {});
|
@ -0,0 +1,6 @@
|
||||
var WithContextualType;
|
||||
class Base {
|
||||
}
|
||||
class Derived extends Base {
|
||||
}
|
||||
Derived || (Derived = {}), WithContextualType || (WithContextualType = {});
|
@ -1,5 +1,5 @@
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
var Base = function() {
|
||||
var WithContextualType, Base = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, Base);
|
||||
}, Derived = function(Base1) {
|
||||
@ -19,3 +19,4 @@ var Base = function() {
|
||||
}
|
||||
return Derived2;
|
||||
}(Base);
|
||||
Derived || (Derived = {}), WithContextualType || (WithContextualType = {});
|
||||
|
@ -1,5 +1,5 @@
|
||||
var M2;
|
||||
!function(M2) {
|
||||
var M, M2;
|
||||
M || (M = {}), function(M2) {
|
||||
var b;
|
||||
b.z, b.x, b.y;
|
||||
}(M2 || (M2 = {}));
|
||||
|
@ -4,4 +4,13 @@ var moduleA;
|
||||
this.x = x, this.y = y;
|
||||
}
|
||||
};
|
||||
class clodule {
|
||||
}
|
||||
function fundule() {
|
||||
return {
|
||||
x: 0,
|
||||
y: 0
|
||||
};
|
||||
}
|
||||
clodule || (clodule = {}), fundule || (fundule = {});
|
||||
export { };
|
||||
|
@ -10,3 +10,10 @@ var moduleA, clodule = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, clodule);
|
||||
};
|
||||
function fundule() {
|
||||
return {
|
||||
x: 0,
|
||||
y: 0
|
||||
};
|
||||
}
|
||||
clodule || (clodule = {}), fundule || (fundule = {});
|
||||
|
@ -1,4 +1,4 @@
|
||||
var E;
|
||||
(E || (E = {})).xDist = function(x) {
|
||||
var C, D, E;
|
||||
C || (C = {}), D || (D = {}), (E || (E = {})).xDist = function(x) {
|
||||
return 0 - x.x;
|
||||
};
|
||||
|
@ -1,4 +1,4 @@
|
||||
var E;
|
||||
(E || (E = {})).xDist = function(x) {
|
||||
var C, D, E;
|
||||
C || (C = {}), D || (D = {}), (E || (E = {})).xDist = function(x) {
|
||||
return 0 - x.x;
|
||||
};
|
||||
|
@ -1,4 +1,4 @@
|
||||
var A, D, E;
|
||||
var A, C, D, E;
|
||||
!function(A1) {
|
||||
class Point {
|
||||
constructor(x, y){
|
||||
@ -6,7 +6,7 @@ var A, D, E;
|
||||
}
|
||||
}
|
||||
A1.Point = Point, A1.Origin = new Point(0, 0);
|
||||
}(A || (A = {})), D || (D = {}), new A.Point(1, 1), function(E1) {
|
||||
}(A || (A = {})), C || (C = {}), D || (D = {}), new A.Point(1, 1), function(E1) {
|
||||
var a = A;
|
||||
E1.xDist = function(x) {
|
||||
return a.Origin.x - x.x;
|
||||
|
@ -1,4 +1,4 @@
|
||||
var A, D, E;
|
||||
var A, C, D, E;
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
!function(A1) {
|
||||
var Point = function(x, y) {
|
||||
@ -6,7 +6,7 @@ import * as swcHelpers from "@swc/helpers";
|
||||
swcHelpers.classCallCheck(this, Point), this.x = x, this.y = y;
|
||||
};
|
||||
A1.Point = Point, A1.Origin = new Point(0, 0);
|
||||
}(A || (A = {})), D || (D = {}), new A.Point(1, 1), function(E1) {
|
||||
}(A || (A = {})), C || (C = {}), D || (D = {}), new A.Point(1, 1), function(E1) {
|
||||
var a = A;
|
||||
E1.xDist = function(x) {
|
||||
return a.Origin.x - x.x;
|
||||
|
@ -1,11 +1,15 @@
|
||||
var C, DD;
|
||||
export var A;
|
||||
!function(A) {}(A || (A = {}));
|
||||
export var B;
|
||||
!function(B) {
|
||||
B[B.Member = 0] = "Member";
|
||||
}(B || (B = {}));
|
||||
}(B || (B = {})), C = {};
|
||||
!function(DD) {}(DD || (DD = {}));
|
||||
export var E;
|
||||
!function(E) {}(E || (E = {}));
|
||||
export var F;
|
||||
!function(F) {}(F || (F = {}));
|
||||
export var G;
|
||||
!function(G) {
|
||||
G[G.A = 1] = "A", G[G.B = 2] = "B", G[G.C = 3] = "C";
|
||||
|
@ -1,11 +1,15 @@
|
||||
var C, DD;
|
||||
export var A;
|
||||
!function(A) {}(A || (A = {}));
|
||||
export var B;
|
||||
!function(B) {
|
||||
B[B.Member = 0] = "Member";
|
||||
}(B || (B = {}));
|
||||
}(B || (B = {})), C = {};
|
||||
!function(DD) {}(DD || (DD = {}));
|
||||
export var E;
|
||||
!function(E) {}(E || (E = {}));
|
||||
export var F;
|
||||
!function(F) {}(F || (F = {}));
|
||||
export var G;
|
||||
!function(G) {
|
||||
G[G.A = 1] = "A", G[G.B = 2] = "B", G[G.C = 3] = "C";
|
||||
|
@ -0,0 +1,2 @@
|
||||
var M;
|
||||
M || (M = {});
|
@ -1 +1,2 @@
|
||||
(void 0).a;
|
||||
var M;
|
||||
(void 0).a, M || (M = {});
|
||||
|
@ -1 +1,2 @@
|
||||
(void 0).a;
|
||||
var M;
|
||||
(void 0).a, M || (M = {});
|
||||
|
@ -1,6 +1,8 @@
|
||||
var A, Y;
|
||||
!function(A) {
|
||||
var Color;
|
||||
let Module;
|
||||
Module || (Module = {});
|
||||
let Color1;
|
||||
(Color = Color1 || (Color1 = {}))[Color.Blue = 0] = "Blue", Color[Color.Red = 1] = "Red";
|
||||
}(A || (A = {})), function(Y1) {
|
||||
@ -15,7 +17,7 @@ var A, Y;
|
||||
}
|
||||
Y1.AA = AA, Y1.B = class extends AA {
|
||||
}, Y1.BB = class extends A1 {
|
||||
}, (Color = Y1.Color || (Y1.Color = {}))[Color.Blue = 0] = "Blue", Color[Color.Red = 1] = "Red", Y1.x = 12, Y1.F = F, Y1.array = null, Y1.fn = (s)=>'hello ' + s
|
||||
}, Y1.Module || (Y1.Module = {}), (Color = Y1.Color || (Y1.Color = {}))[Color.Blue = 0] = "Blue", Color[Color.Red = 1] = "Red", Y1.x = 12, Y1.F = F, Y1.array = null, Y1.fn = (s)=>'hello ' + s
|
||||
, Y1.ol = {
|
||||
s: 'hello',
|
||||
id: 2,
|
||||
|
@ -1,7 +1,8 @@
|
||||
var X, Y, D;
|
||||
!function(X1) {
|
||||
X1.Y || (X1.Y = {});
|
||||
}(X || (X = {})), function(Y3) {
|
||||
var Y1, Y2;
|
||||
(Y2 = (Y1 = Y3.Y || (Y3.Y = {})).Y || (Y1.Y = {}))[Y2.Red = 0] = "Red", Y2[Y2.Blue = 1] = "Blue";
|
||||
var A, B, X, Y, D;
|
||||
A || (A = {}), B || (B = {}), B || (B = {}), function(X1) {
|
||||
var Y1;
|
||||
(Y1 = X1.Y || (X1.Y = {})).Z || (Y1.Z = {});
|
||||
}(X || (X = {})), function(Y4) {
|
||||
var Y2, Y3;
|
||||
(Y3 = (Y2 = Y4.Y || (Y4.Y = {})).Y || (Y2.Y = {}))[Y3.Red = 0] = "Red", Y3[Y3.Blue = 1] = "Blue";
|
||||
}(Y || (Y = {})), (D || (D = {})).E = 'hello';
|
||||
|
@ -1,13 +1,14 @@
|
||||
var B, X, Y, D;
|
||||
var A, B, X, Y, D;
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
!function(B) {
|
||||
A || (A = {}), B || (B = {}), function(B) {
|
||||
var B1 = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, B1);
|
||||
};
|
||||
}(B || (B = {})), function(X1) {
|
||||
X1.Y || (X1.Y = {});
|
||||
}(X || (X = {})), function(Y2) {
|
||||
var Y1, _$Y;
|
||||
(_$Y = (Y1 = Y2.Y || (Y2.Y = {})).Y || (Y1.Y = {}))[_$Y.Red = 0] = "Red", _$Y[_$Y.Blue = 1] = "Blue";
|
||||
var Y1;
|
||||
(Y1 = X1.Y || (X1.Y = {})).Z || (Y1.Z = {});
|
||||
}(X || (X = {})), function(Y3) {
|
||||
var Y2, _$Y;
|
||||
(_$Y = (Y2 = Y3.Y || (Y3.Y = {})).Y || (Y2.Y = {}))[_$Y.Red = 0] = "Red", _$Y[_$Y.Blue = 1] = "Blue";
|
||||
}(Y || (Y = {})), (D || (D = {})).E = "hello";
|
||||
|
@ -1,4 +1,4 @@
|
||||
var ENUM1;
|
||||
!function(ENUM1) {
|
||||
var ENUM, ENUM1;
|
||||
!function(ENUM) {}(ENUM || (ENUM = {})), function(ENUM1) {
|
||||
ENUM1[ENUM1.A = 0] = "A", ENUM1[ENUM1.B = 1] = "B", ENUM1[ENUM1[""] = 2] = "";
|
||||
}(ENUM1 || (ENUM1 = {})), ENUM1.B, ENUM1.B, ENUM1[""], ENUM1.B;
|
||||
|
@ -1,4 +1,4 @@
|
||||
var ENUM1;
|
||||
!function(ENUM1) {
|
||||
var ENUM, ENUM1;
|
||||
!function(ENUM) {}(ENUM || (ENUM = {})), function(ENUM1) {
|
||||
ENUM1[ENUM1.A = 0] = "A", ENUM1[ENUM1.B = 1] = "B", ENUM1[ENUM1[""] = 2] = "";
|
||||
}(ENUM1 || (ENUM1 = {})), ENUM1.B, ENUM1.B, ENUM1[""], ENUM1.B;
|
||||
|
@ -1,5 +1,7 @@
|
||||
var M2;
|
||||
!function(M21) {
|
||||
var A, M2;
|
||||
!function(A1) {
|
||||
A1.B || (A1.B = {});
|
||||
}(A || (A = {})), function(M21) {
|
||||
var Point;
|
||||
(M21.X || (M21.X = {})).Point = Point;
|
||||
}(M2 || (M2 = {})), M2.X.Point;
|
||||
|
@ -1,5 +1,7 @@
|
||||
var M2;
|
||||
!function(M21) {
|
||||
var A, M2;
|
||||
!function(A1) {
|
||||
A1.B || (A1.B = {});
|
||||
}(A || (A = {})), function(M21) {
|
||||
var Point;
|
||||
(M21.X || (M21.X = {})).Point = Point;
|
||||
}(M2 || (M2 = {})), M2.X.Point;
|
||||
|
@ -1,3 +1,3 @@
|
||||
(function() {
|
||||
new.target.marked;
|
||||
!0 === new.target.marked && new.target.marked;
|
||||
}).marked = !0;
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
function f() {
|
||||
(swcHelpers._instanceof(this, f) ? this.constructor : void 0).marked;
|
||||
!0 === (swcHelpers._instanceof(this, f) ? this.constructor : void 0).marked && (swcHelpers._instanceof(this, f) ? this.constructor : void 0).marked;
|
||||
}
|
||||
f.marked = !0;
|
||||
|
@ -0,0 +1,2 @@
|
||||
var E;
|
||||
!function(E) {}(E || (E = {}));
|
@ -1,5 +1,6 @@
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
var C = function() {
|
||||
var E, C = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, C);
|
||||
};
|
||||
!function(E) {}(E || (E = {}));
|
||||
|
@ -1 +1,2 @@
|
||||
export var SignatureFlags;
|
||||
!function(SignatureFlags) {}(SignatureFlags || (SignatureFlags = {}));
|
||||
|
@ -1 +1,2 @@
|
||||
export var SignatureFlags;
|
||||
!function(SignatureFlags) {}(SignatureFlags || (SignatureFlags = {}));
|
||||
|
@ -0,0 +1,2 @@
|
||||
var E;
|
||||
!function(E) {}(E || (E = {}));
|
@ -0,0 +1,2 @@
|
||||
var E;
|
||||
!function(E) {}(E || (E = {}));
|
@ -0,0 +1,4 @@
|
||||
var M1;
|
||||
!function(M11) {
|
||||
M11.M2 || (M11.M2 = {});
|
||||
}(M1 || (M1 = {}));
|
@ -0,0 +1,4 @@
|
||||
var M1;
|
||||
!function(M11) {
|
||||
M11.M2 || (M11.M2 = {});
|
||||
}(M1 || (M1 = {}));
|
@ -1,4 +1,4 @@
|
||||
var ENUM, ENUM1;
|
||||
!function(ENUM1) {
|
||||
!function(ENUM) {}(ENUM || (ENUM = {})), function(ENUM1) {
|
||||
ENUM1[ENUM1.A = 0] = "A", ENUM1[ENUM1.B = 1] = "B", ENUM1[ENUM1[""] = 2] = "";
|
||||
}(ENUM1 || (ENUM1 = {})), ENUM1.A, ENUM[0], ENUM1.B, ENUM1.B;
|
||||
|
@ -1,4 +1,4 @@
|
||||
var ENUM, ENUM1;
|
||||
!function(ENUM1) {
|
||||
!function(ENUM) {}(ENUM || (ENUM = {})), function(ENUM1) {
|
||||
ENUM1[ENUM1.A = 0] = "A", ENUM1[ENUM1.B = 1] = "B", ENUM1[ENUM1[""] = 2] = "";
|
||||
}(ENUM1 || (ENUM1 = {})), ENUM1.A, ENUM[0], ENUM1.B, ENUM1.B;
|
||||
|
@ -1,8 +1,8 @@
|
||||
var M1, M3;
|
||||
var M1, M2, M3;
|
||||
!function(M11) {
|
||||
var s;
|
||||
M11.s = s;
|
||||
}(M1 || (M1 = {})), function(M3) {
|
||||
}(M1 || (M1 = {})), M2 || (M2 = {}), function(M3) {
|
||||
let M4;
|
||||
M4 || (M4 = {});
|
||||
}(M3 || (M3 = {}));
|
||||
|
@ -2,8 +2,8 @@ import * as swcHelpers from "@swc/helpers";
|
||||
!function(M11) {
|
||||
var s;
|
||||
M11.s = s;
|
||||
}(M1 || (M1 = {}));
|
||||
var M1, M3, C = function() {
|
||||
}(M1 || (M1 = {})), M2 || (M2 = {});
|
||||
var M1, M2, M3, C = function() {
|
||||
"use strict";
|
||||
function C() {
|
||||
swcHelpers.classCallCheck(this, C), this.n = this.s;
|
||||
|
@ -1,6 +1,6 @@
|
||||
var A, X;
|
||||
var A, B, X, Z;
|
||||
(A || (A = {})).Point = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, (X || (X = {})).Y = class {
|
||||
};
|
||||
}, B || (B = {}), (X || (X = {})).Y = class {
|
||||
}, Z || (Z = {});
|
||||
|
@ -1,12 +1,12 @@
|
||||
var A, X;
|
||||
var A, B, X, Z;
|
||||
import * as swcHelpers from "@swc/helpers";
|
||||
(A || (A = {})).Point = {
|
||||
x: 0,
|
||||
y: 0
|
||||
}, function(X1) {
|
||||
}, B || (B = {}), function(X1) {
|
||||
var Y = function() {
|
||||
"use strict";
|
||||
swcHelpers.classCallCheck(this, Y);
|
||||
};
|
||||
X1.Y = Y;
|
||||
}(X || (X = {}));
|
||||
}(X || (X = {})), Z || (Z = {});
|
||||
|
@ -0,0 +1,2 @@
|
||||
var M1, M2;
|
||||
M1 || (M1 = {}), M2 || (M2 = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
@ -0,0 +1,2 @@
|
||||
var NotOptional, Optional;
|
||||
NotOptional || (NotOptional = {}), Optional || (Optional = {});
|
@ -0,0 +1,2 @@
|
||||
var ExplicitPublic, ImplicitPublic;
|
||||
ExplicitPublic || (ExplicitPublic = {}), ImplicitPublic || (ImplicitPublic = {});
|
@ -0,0 +1,2 @@
|
||||
var TwoLevels;
|
||||
TwoLevels || (TwoLevels = {});
|
@ -0,0 +1,2 @@
|
||||
var TwoLevels;
|
||||
TwoLevels || (TwoLevels = {});
|
@ -0,0 +1,2 @@
|
||||
var TwoLevels;
|
||||
TwoLevels || (TwoLevels = {});
|
@ -0,0 +1,2 @@
|
||||
var Generics;
|
||||
Generics || (Generics = {});
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user