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/regexp/regexp_2/output.mangleOnly.js | JavaScript | console.log(JSON.stringify("COMPASS? Overpass.".match(new RegExp("([Sap]+)", "ig"))));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_2/output.terser.js | JavaScript | console.log(JSON.stringify("COMPASS? Overpass.".match(/([Sap]+)/gi)));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_simple/input.js | JavaScript | /rx/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_simple/output.js | JavaScript | /rx/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_simple/output.mangleOnly.js | JavaScript | /rx/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_simple/output.terser.js | JavaScript | /rx/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_slashes/input.js | JavaScript | /\\\/rx\/\\/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_slashes/output.js | JavaScript | /\\\/rx\/\\/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_slashes/output.mangleOnly.js | JavaScript | /\\\/rx\/\\/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/regexp_slashes/output.terser.js | JavaScript | /\\\/rx\/\\/gi;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/unsafe_slashes/input.js | JavaScript | console.log(new RegExp("^https://"));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/unsafe_slashes/output.js | JavaScript | console.log(/^https:\/\//);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/unsafe_slashes/output.mangleOnly.js | JavaScript | console.log(new RegExp("^https://"));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/regexp/unsafe_slashes/output.terser.js | JavaScript | console.log(/^https:\/\//);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch/input.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch/output.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (t) {
try {
throw 2;
} catch (c) {
var c = 3;
console.log(c);
}
}
console.log(c);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch/output.mangleOnly.js | JavaScript | var o = 0;
function c() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch/output.terser.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch_ie8/input.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch_ie8/output.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch_ie8/output.mangleOnly.js | JavaScript | var o = 0;
function c() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_catch_catch_ie8/output.terser.js | JavaScript | var o = 0;
function f() {
try {
throw 1;
} catch (c) {
try {
throw 2;
} catch (o) {
var o = 3;
console.log(o);
}
}
console.log(o);
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch/input.js | JavaScript | function f(n) {
!(function () {
try {
throw 0;
} catch (n) {
var a = 1;
console.log(n, a);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch/output.js | JavaScript | function f(o) {
!(function () {
try {
throw 0;
} catch (c) {
var o = 1;
console.log(c, o);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch/output.mangleOnly.js | JavaScript | function o(o) {
!(function() {
try {
throw 0;
} catch (c) {
var o = 1;
console.log(c, o);
}
})();
}
o();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch/output.terser.js | JavaScript | function f(o) {
!(function () {
try {
throw 0;
} catch (c) {
var o = 1;
console.log(c, o);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch_ie8/input.js | JavaScript | function f(n) {
!(function () {
try {
throw 0;
} catch (n) {
var a = 1;
console.log(n, a);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch_ie8/output.js | JavaScript | function f(o) {
!(function () {
try {
throw 0;
} catch (o) {
var c = 1;
console.log(o, c);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch_ie8/output.mangleOnly.js | JavaScript | function o(o) {
!(function() {
try {
throw 0;
} catch (c) {
var o = 1;
console.log(c, o);
}
})();
}
o();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/function_iife_catch_ie8/output.terser.js | JavaScript | function f(o) {
!(function () {
try {
throw 0;
} catch (o) {
var c = 1;
console.log(o, c);
}
})();
}
f();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_1/input.js | JavaScript | "aaaaaaaa";
var a = 1,
b = "FAIL";
try {
throw 1;
} catch (c) {
try {
throw 0;
} catch (a) {
if (c) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_1/output.js | JavaScript | "aaaaaaaa";
var a = 1, b = "FAIL";
try {
throw 1;
} catch (t) {
try {
throw 0;
} catch (c) {
if (t) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_1/output.mangleOnly.js | JavaScript | "aaaaaaaa";
var a = 1, t = "FAIL";
try {
throw 1;
} catch (a) {
try {
throw 0;
} catch (c) {
if (a) t = "PASS";
}
}
console.log(t);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_1/output.terser.js | JavaScript | "aaaaaaaa";
var a = 1,
b = "FAIL";
try {
throw 1;
} catch (t) {
try {
throw 0;
} catch (a) {
if (t) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_2/input.js | JavaScript | "aaaaaaaa";
var a = 1,
b = "FAIL";
try {
throw 1;
} catch (c) {
try {
throw 0;
} catch (a) {
if (c) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_2/output.js | JavaScript | "aaaaaaaa";
var a = 1,
b = "FAIL";
try {
throw 1;
} catch (c) {
try {
throw 0;
} catch (a) {
if (c) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_2/output.mangleOnly.js | JavaScript | "aaaaaaaa";
var a = 1, t = "FAIL";
try {
throw 1;
} catch (a) {
try {
throw 0;
} catch (c) {
if (a) t = "PASS";
}
}
console.log(t);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/issue_2120_2/output.terser.js | JavaScript | "aaaaaaaa";
var a = 1,
b = "FAIL";
try {
throw 1;
} catch (c) {
try {
throw 0;
} catch (a) {
if (c) b = "PASS";
}
}
console.log(b);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch/output.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (o) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch/output.terser.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (o) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8/output.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8/output.terser.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8_toplevel/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8_toplevel/output.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8_toplevel/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_ie8_toplevel/output.terser.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1/input.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1/output.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1/output.mangleOnly.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1/output.terser.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8/input.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8/output.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8/output.mangleOnly.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8/output.terser.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8_toplevel/input.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8_toplevel/output.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8_toplevel/output.mangleOnly.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_ie8_toplevel/output.terser.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_toplevel/input.js | JavaScript | var a = "PASS";
try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_toplevel/output.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_toplevel/output.mangleOnly.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (r) {
var r = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_1_toplevel/output.terser.js | JavaScript | var o = "PASS";
try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2/input.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2/output.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2/output.mangleOnly.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2/output.terser.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8/input.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8/output.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8/output.mangleOnly.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8/output.terser.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8_toplevel/input.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8_toplevel/output.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8_toplevel/output.mangleOnly.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_ie8_toplevel/output.terser.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_toplevel/input.js | JavaScript | try {
throw "FAIL1";
} catch (a) {
var a = "FAIL2";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_toplevel/output.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_toplevel/output.mangleOnly.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_redef_2_toplevel/output.terser.js | JavaScript | try {
throw "FAIL1";
} catch (o) {
var o = "FAIL2";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_toplevel/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_toplevel/output.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_toplevel/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_toplevel/output.terser.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (c) {
o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var/output.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (o) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var/output.terser.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (o) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8/output.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8/output.terser.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8_toplevel/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8_toplevel/output.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8_toplevel/output.mangleOnly.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_ie8_toplevel/output.terser.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_toplevel/input.js | JavaScript | var a = "FAIL";
try {
throw 1;
} catch (args) {
var a = "PASS";
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/rename/mangle_catch_var_toplevel/output.js | JavaScript | var o = "FAIL";
try {
throw 1;
} catch (r) {
var o = "PASS";
}
console.log(o);
| 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.