mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
7f69b9c80f
I found a way to make the name mangler parallel, but I want to ensure that we don't break anything.
26 lines
460 B
JavaScript
26 lines
460 B
JavaScript
var a, b, c;
|
|
!(function(a) {
|
|
var b;
|
|
(a.Point || (a.Point = {})).Origin = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
})(a || (a = {})), ((c = a || (a = {})).Point = function() {
|
|
return {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
}), (function(a) {
|
|
var c;
|
|
function b() {
|
|
return {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
}
|
|
((b = a.Point || (a.Point = {})).Origin = {
|
|
x: 0,
|
|
y: 0
|
|
}), (a.Point = b);
|
|
})(b || (b = {}));
|