file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_getter/output.js | JavaScript | a = { get foo() {} };
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_getter/output.mangleOnly.js | JavaScript | a = {
get foo () {}
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_getter/output.terser.js | JavaScript | a = { get foo() {} };
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_setter/input.js | JavaScript | a = { set foo() {} };
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_setter/output.js | JavaScript | a = { set foo() {} };
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_setter/output.mangleOnly.js | JavaScript | a = {
set foo (<invalid>){}
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/keep_name_of_setter/output.terser.js | JavaScript | a={set foo(){}}; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/setter_with_operator_keys/input.js | JavaScript | var tokenCodes = {
get instanceof() {
return test0;
},
set instanceof(value) {
test0 = value;
},
set typeof(value) {
test1 = value;
},
get typeof() {
return test1;
},
set else(value) {
test2 = value;
},
get else() {
return test2;
},
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/setter_with_operator_keys/output.js | JavaScript | var tokenCodes = {
get instanceof () {
return test0;
},
set instanceof (value){
test0 = value;
},
set typeof (value){
test1 = value;
},
get typeof () {
return test1;
},
set else (value){
test2 = value;
},
get else () {
return test2;
}
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/setter_with_operator_keys/output.mangleOnly.js | JavaScript | var t = {
get instanceof () {
return test0;
},
set instanceof (value){
test0 = value;
},
set typeof (value){
test1 = value;
},
get typeof () {
return test1;
},
set else (value){
test2 = value;
},
get else () {
return test2;
}
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_12/setter_with_operator_keys/output.terser.js | JavaScript | var tokenCodes = {
get instanceof() {
return test0;
},
set instanceof(value) {
test0 = value;
},
set typeof(value) {
test1 = value;
},
get typeof() {
return test1;
},
set else(value) {
test2 = value;
},
get else() {
return test2;
},
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_false/input.js | JavaScript | "use strict";
function total() {
return function n(a, b, c) {
return a + b + c;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_false/output.js | JavaScript | "use strict";
function total() {
return function t(t, n, r) {
return t + n + r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_false/output.mangleOnly.js | JavaScript | "use strict";
function n() {
return function n(n, t, r) {
return n + t + r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_false/output.terser.js | JavaScript | "use strict";
function total() {
return function t(n, r, u) {
return n + r + u;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_true/input.js | JavaScript | "use strict";
function total() {
return function n(a, b, c) {
return a + b + c;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_true/output.js | JavaScript | "use strict";
function total() {
return function n(t, r, u) {
return t + r + u;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_true/output.mangleOnly.js | JavaScript | "use strict";
function n() {
return function n(n, t, r) {
return n + t + r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1202/mangle_keep_fnames_true/output.terser.js | JavaScript | "use strict";
function total() {
return function n(t, r, u) {
return t + r + u;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_false/input.js | JavaScript | class foo {
bar() {
if (DEBUG) console.log("DEV");
else console.log("PROD");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_false/output.js | JavaScript | class foo {
bar() {
console.log("PROD");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_false/output.mangleOnly.js | JavaScript | class l {
bar() {
if (DEBUG) console.log("DEV");
else console.log("PROD");
}
}
new l().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_false/output.terser.js | JavaScript | class foo {
bar() {
console.log("PROD");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_true/input.js | JavaScript | class foo {
bar() {
if (DEBUG) console.log("DEV");
else console.log("PROD");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_true/output.js | JavaScript | class foo {
bar() {
console.log("DEV");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_true/output.mangleOnly.js | JavaScript | class l {
bar() {
if (DEBUG) console.log("DEV");
else console.log("PROD");
}
}
new l().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1212/issue_1212_debug_true/output.terser.js | JavaScript | class foo {
bar() {
console.log("DEV");
}
}
new foo().bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_126/concatenate_rhs_strings/input.js | JavaScript | foo(bar() + 123 + "Hello" + "World");
foo(bar() + (123 + "Hello") + "World");
foo(bar() + 123 + "Hello" + "World");
foo(bar() + 123 + "Hello" + "World" + ("Foo" + "Bar"));
foo("Foo" + "Bar" + bar() + 123 + "Hello" + "World" + ("Foo" + "Bar"));
foo("Hello" + bar() + 123 + "World");
foo(bar() + "Foo" + (10 + parseInt("10")));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_126/concatenate_rhs_strings/output.js | JavaScript | foo(bar() + 123 + "HelloWorld");
foo(bar() + "123HelloWorld");
foo(bar() + 123 + "HelloWorld");
foo(bar() + 123 + "HelloWorldFooBar");
foo("FooBar" + bar() + "123HelloWorldFooBar");
foo("Hello" + bar() + "123World");
foo(bar() + "Foo" + (10 + parseInt("10")));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_126/concatenate_rhs_strings/output.mangleOnly.js | JavaScript | foo(bar() + 123 + "Hello" + "World");
foo(bar() + (123 + "Hello") + "World");
foo(bar() + 123 + "Hello" + "World");
foo(bar() + 123 + "Hello" + "World" + ("Foo" + "Bar"));
foo("Foo" + "Bar" + bar() + 123 + "Hello" + "World" + ("Foo" + "Bar"));
foo("Hello" + bar() + 123 + "World");
foo(bar() + "Foo" + (10 + parseInt("10")));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_126/concatenate_rhs_strings/output.terser.js | JavaScript | foo(bar() + 123 + "HelloWorld");
foo(bar() + "123HelloWorld");
foo(bar() + 123 + "HelloWorld");
foo(bar() + 123 + "HelloWorldFooBar");
foo("FooBar" + bar() + "123HelloWorldFooBar");
foo("Hello" + bar() + "123World");
foo(bar() + "Foo" + (10 + parseInt("10")));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls/input.js | JavaScript | (function () {
console.log("iife0");
})();
var iife1 = (function () {
console.log("iife1");
function iife1() {}
return iife1;
})();
(function () {
var iife2 = (function () {
console.log("iife2");
function iife2() {}
return iife2;
})();
})();
bar(), baz(), quux();
a.b(), c.d.e(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls/output.js | JavaScript | var iife1 = (function () {
console.log("iife1");
function iife1() {}
return iife1;
})();
baz(), quux();
a.b(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls/output.mangleOnly.js | JavaScript | (function() {
console.log("iife0");
})();
var n = (function() {
console.log("iife1");
function n() {}
return n;
})();
(function() {
var n = (function() {
console.log("iife2");
function n() {}
return n;
})();
})();
bar(), baz(), quux();
a.b(), c.d.e(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls/output.terser.js | JavaScript | var iife1 = (function () {
console.log("iife1");
function iife1() {}
return iife1;
})();
baz(), quux();
a.b(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls_toplevel/input.js | JavaScript | (function () {
console.log("iife0");
})();
var iife1 = (function () {
console.log("iife1");
function iife1() {}
return iife1;
})();
(function () {
var iife2 = (function () {
console.log("iife2");
function iife2() {}
return iife2;
})();
})();
var MyClass = (function () {
function MyClass() {}
MyClass.prototype.method = function () {};
return MyClass;
})();
bar(), baz(), quux();
a.b(), c.d.e(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls_toplevel/output.js | JavaScript | baz(), quux();
a.b(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls_toplevel/output.mangleOnly.js | JavaScript | (function() {
console.log("iife0");
})();
var n = (function() {
console.log("iife1");
function n() {}
return n;
})();
(function() {
var n = (function() {
console.log("iife2");
function n() {}
return n;
})();
})();
var o = (function() {
function n() {}
n.prototype.method = function() {};
return n;
})();
bar(), baz(), quux();
a.b(), c.d.e(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1261/pure_function_calls_toplevel/output.terser.js | JavaScript | baz(), quux();
a.b(), f.g();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1275/string_plus_optimization/input.js | JavaScript | function foo(anything) {
function throwing_function() {
throw "nope";
}
try {
console.log("0" + throwing_function() ? "yes" : "no");
} catch (ex) {
console.log(ex);
}
console.log("0" + anything ? "yes" : "no");
console.log(anything + "0" ? "Yes" : "No");
console.log("" + anything);
console.log(anything + "");
}
foo();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1275/string_plus_optimization/output.js | JavaScript | function foo(anything) {
function throwing_function() {
throw "nope";
}
try {
console.log((throwing_function(), "yes"));
} catch (ex) {
console.log(ex);
}
console.log("yes");
console.log("Yes");
console.log("" + anything);
console.log(anything + "");
}
foo();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1275/string_plus_optimization/output.mangleOnly.js | JavaScript | function o(o) {
function n() {
throw "nope";
}
try {
console.log("0" + n() ? "yes" : "no");
} catch (o) {
console.log(o);
}
console.log("0" + o ? "yes" : "no");
console.log(o + "0" ? "Yes" : "No");
console.log("" + o);
console.log(o + "");
}
o();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1275/string_plus_optimization/output.terser.js | JavaScript | function foo(anything) {
function throwing_function() {
throw "nope";
}
try {
console.log((throwing_function(), "yes"));
} catch (ex) {
console.log(ex);
}
console.log("yes");
console.log("Yes");
console.log("" + anything);
console.log(anything + "");
}
foo();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_debug/input.js | JavaScript | var x = {};
x.foo = 1;
x["_$foo$_"] = 2 * x.foo;
console.log(x.foo, x["_$foo$_"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_debug/output.js | JavaScript | var x = {};
x.o = 1;
x["_$foo$_"] = 2 * x.o;
console.log(x.o, x["_$foo$_"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_debug/output.mangleOnly.js | JavaScript | var o = {};
o.foo = 1;
o["_$foo$_"] = 2 * o.foo;
console.log(o.foo, o["_$foo$_"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_debug/output.terser.js | JavaScript | var x = {};
x.o = 1;
x["_$foo$_"] = 2 * x.o;
console.log(x.o, x["_$foo$_"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_no_debug/input.js | JavaScript | var x = {};
x.foo = 1;
x["a"] = 2 * x.foo;
console.log(x.foo, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_no_debug/output.js | JavaScript | var x = {};
x.o = 1;
x["a"] = 2 * x.o;
console.log(x.o, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_no_debug/output.mangleOnly.js | JavaScript | var o = {};
o.foo = 1;
o["a"] = 2 * o.foo;
console.log(o.foo, o["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_no_debug/output.terser.js | JavaScript | var x = {};
x.o = 1;
x["a"] = 2 * x.o;
console.log(x.o, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_with_quoted/input.js | JavaScript | var x = {};
x.foo = 1;
x["a"] = 2 * x.foo;
console.log(x.foo, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_with_quoted/output.js | JavaScript | var x = {};
x.o = 1;
x["a"] = 2 * x.o;
console.log(x.o, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_with_quoted/output.mangleOnly.js | JavaScript | var o = {};
o.foo = 1;
o["a"] = 2 * o.foo;
console.log(o.foo, o["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1321/issue_1321_with_quoted/output.terser.js | JavaScript | var x = {};
x.o = 1;
x["a"] = 2 * x.o;
console.log(x.o, x["a"]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_equal/input.js | JavaScript | (a = parseInt("100")) == a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_equal/output.js | JavaScript | (a = parseInt("100")) == a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_equal/output.mangleOnly.js | JavaScript | (a = parseInt("100")) == a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_equal/output.terser.js | JavaScript | (a = parseInt("100")) == a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_greater_or_equal/input.js | JavaScript | (a = parseInt("100")) >= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_greater_or_equal/output.js | JavaScript | (a = parseInt("100")) >= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_greater_or_equal/output.mangleOnly.js | JavaScript | (a = parseInt("100")) >= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_greater_or_equal/output.terser.js | JavaScript | (a = parseInt("100")) >= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_lesser_or_equal/input.js | JavaScript | (a = parseInt("100")) <= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_lesser_or_equal/output.js | JavaScript | (a = parseInt("100")) <= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_lesser_or_equal/output.mangleOnly.js | JavaScript | (a = parseInt("100")) <= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_lesser_or_equal/output.terser.js | JavaScript | (a = parseInt("100")) <= a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_unequal/input.js | JavaScript | (a = parseInt("100")) != a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_unequal/output.js | JavaScript | (a = parseInt("100")) != a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_unequal/output.mangleOnly.js | JavaScript | (a = parseInt("100")) != a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_143/tranformation_sort_order_unequal/output.terser.js | JavaScript | (a = parseInt("100")) != a;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_one/input.js | JavaScript | function f(x) {
return function () {
function n(a) {
return a * a;
}
return x(n);
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_one/output.js | JavaScript | function f(r) {
return function () {
function n(r) {
return r * r;
}
return r(n);
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_one/output.mangleOnly.js | JavaScript | function n(n) {
return function() {
function r(n) {
return n * n;
}
return n(r);
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_one/output.terser.js | JavaScript | function f(r) {
return function () {
function n(r) {
return r * r;
}
return r(n);
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_three/input.js | JavaScript | function f(x) {
return function () {
function r(a) {
return a * a;
}
return [
function () {
function t(a) {
return a * a;
}
return t;
},
function () {
function n(a) {
return a * a;
}
return x(n);
},
];
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_three/output.js | JavaScript | function f(u) {
return function () {
function r(u) {
return u * u;
}
return [
function () {
function t(u) {
return u * u;
}
return t;
},
function () {
function n(u) {
return u * u;
}
return u(n);
},
];
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_three/output.mangleOnly.js | JavaScript | function n(n) {
return function() {
function r(n) {
return n * n;
}
return [
function() {
function n(n) {
return n * n;
}
return n;
},
function() {
function r(n) {
return n * n;
}
return n(r);
}
];
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_three/output.terser.js | JavaScript | function f(u) {
return function () {
function r(u) {
return u * u;
}
return [
function () {
function t(u) {
return u * u;
}
return t;
},
function () {
function n(u) {
return u * u;
}
return u(n);
},
];
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_two/input.js | JavaScript | function f(x) {
return function () {
function r(a) {
return a * a;
}
return function () {
function n(a) {
return a * a;
}
return x(n);
};
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_two/output.js | JavaScript | function f(t) {
return function () {
function r(t) {
return t * t;
}
return function () {
function n(t) {
return t * t;
}
return t(n);
};
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_two/output.mangleOnly.js | JavaScript | function n(n) {
return function() {
function r(n) {
return n * n;
}
return function() {
function r(n) {
return n * n;
}
return n(r);
};
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_two/output.terser.js | JavaScript | function f(t) {
return function () {
function r(t) {
return t * t;
}
return function () {
function n(t) {
return t * t;
}
return t(n);
};
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_zero/input.js | JavaScript | function f(x) {
function n(a) {
return a * a;
}
return function () {
return x;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_zero/output.js | JavaScript | function f(r) {
function n(r) {
return r * r;
}
return function () {
return r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_zero/output.mangleOnly.js | JavaScript | function n(n) {
function r(n) {
return n * n;
}
return function() {
return n;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1431/level_zero/output.terser.js | JavaScript | function f(r) {
function n(r) {
return r * r;
}
return function () {
return r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/keep_fnames/input.js | JavaScript | function f(undefined) {
return function () {
function n(a) {
return a * a;
}
if (a) return b;
if (c) return d;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/keep_fnames/output.js | JavaScript | function f(r) {
return function () {
function n(r) {
return r * r;
}
return a ? b : c ? d : r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/keep_fnames/output.mangleOnly.js | JavaScript | function n(n) {
return function() {
function n(n) {
return n * n;
}
if (a) return b;
if (c) return d;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/keep_fnames/output.terser.js | JavaScript | function f(r) {
return function () {
function n(r) {
return r * r;
}
return a ? b : c ? d : r;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/unsafe_undefined/input.js | JavaScript | function f(undefined) {
return function () {
if (a) return b;
if (c) return d;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/unsafe_undefined/output.js | JavaScript | function f(n) {
return function () {
return a ? b : c ? d : n;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/unsafe_undefined/output.mangleOnly.js | JavaScript | function n(n) {
return function() {
if (a) return b;
if (c) return d;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1443/unsafe_undefined/output.terser.js | JavaScript | function f(n) {
return function () {
return a ? b : c ? d : n;
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1446/typeof_eq_undefined/input.js | JavaScript | var a = typeof b != "undefined";
b = typeof a != "undefined";
var c = typeof d.e !== "undefined";
var f = "undefined" === typeof g;
g = "undefined" === typeof f;
var h = "undefined" == typeof i.j;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1446/typeof_eq_undefined/output.js | JavaScript | var a = "undefined" != typeof b;
b = void 0 !== a;
var c = void 0 !== d.e;
var f = "undefined" == typeof g;
g = void 0 === f;
var h = void 0 === i.j;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1446/typeof_eq_undefined/output.mangleOnly.js | JavaScript | var e = typeof b != "undefined";
b = typeof e != "undefined";
var f = typeof d.e !== "undefined";
var n = "undefined" === typeof g;
g = "undefined" === typeof n;
var o = "undefined" == typeof i.j;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1446/typeof_eq_undefined/output.terser.js | JavaScript | var a = "undefined" != typeof b;
b = void 0 !== a;
var c = void 0 !== d.e;
var f = "undefined" == typeof g;
g = void 0 === f;
var h = void 0 === i.j;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/issue_1446/typeof_eq_undefined_ie8/input.js | JavaScript | var a = typeof b != "undefined";
b = typeof a != "undefined";
var c = typeof d.e !== "undefined";
var f = "undefined" === typeof g;
g = "undefined" === typeof f;
var h = "undefined" == typeof i.j;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.