mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
7f69b9c80f
I found a way to make the name mangler parallel, but I want to ensure that we don't break anything.
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
foo({
|
|
bar: function c(a, b) {
|
|
if (!(b ? a.quxA : a.quxB) && !(b ? a.corgeA : a.corgeB) && (b ? a.get("waldo") : a.waldo)) {
|
|
pass();
|
|
} else if (!(b ? a.quxA : a.quxB) && !(b ? a.get("waldo") : a.waldo) && (b ? a.corgeA : a.corgeB)) {
|
|
pass();
|
|
}
|
|
}
|
|
});
|