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/logical_assignment/prematurely_evaluate_assignment_inv/output.terser.js | JavaScript | var or = "PASS";
var null_coalesce = "PASS";
var and = "FAIL";
or ||= "FAIL";
null_coalesce ??= "FAIL";
and &&= "PASS";
console.log(or, null_coalesce, and);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/dead_code_condition/input.js | JavaScript | for (var a = 0, b = 5; ((a += 1), 3) - 3 && b > 0; b--) {
var c = (function () {
b--;
})(a++);
}
console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/dead_code_condition/output.js | JavaScript | var a = 0, b = 5;
var c;
console.log(a += 1);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/dead_code_condition/output.mangleOnly.js | JavaScript | for(var o = 0, n = 5; ((o += 1), 3) - 3 && n > 0; n--){
var r = (function() {
n--;
})(o++);
}
console.log(o);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/dead_code_condition/output.terser.js | JavaScript | var c;
var a = 0,
b = 5;
(a += 1), 0, console.log(a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/do_switch/input.js | JavaScript | do {
switch (a) {
case b:
continue;
}
} while (false);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/do_switch/output.js | JavaScript | do {
switch (a) {
case b:
continue;
}
} while (false);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/do_switch/output.mangleOnly.js | JavaScript | do {
switch(a){
case b:
continue;
}
}while (false)
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/do_switch/output.terser.js | JavaScript | do {
switch (a) {
case b:
continue;
}
} while (false);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_1/input.js | JavaScript | for (;;) if (foo()) break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_1/output.js | JavaScript | for (; !foo(); );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_1/output.mangleOnly.js | JavaScript | for(;;)if (foo()) break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_1/output.terser.js | JavaScript | for (; !foo(); );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_2/input.js | JavaScript | for (; bar(); ) if (foo()) break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_2/output.js | JavaScript | for (; bar() && !foo(); );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_2/output.mangleOnly.js | JavaScript | for(; bar();)if (foo()) break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_2/output.terser.js | JavaScript | for (; bar() && !foo(); );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_3/input.js | JavaScript | for (; bar(); ) {
if (foo()) break;
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_3/output.js | JavaScript | for (; bar() && !foo(); ) {
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_3/output.mangleOnly.js | JavaScript | for(; bar();){
if (foo()) break;
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_3/output.terser.js | JavaScript | for (; bar() && !foo(); ) {
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_4/input.js | JavaScript | for (; bar(); ) {
x();
y();
if (foo()) break;
z();
k();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_4/output.js | JavaScript | for (; bar() && (x(), y(), !foo()); ) z(), k();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_4/output.mangleOnly.js | JavaScript | for(; bar();){
x();
y();
if (foo()) break;
z();
k();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_break_4/output.terser.js | JavaScript | for (; bar() && (x(), y(), !foo()); ) z(), k();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_1/input.js | JavaScript | for (;;)
if (foo()) bar();
else break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_1/output.js | JavaScript | for (; foo(); ) bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_1/output.mangleOnly.js | JavaScript | for(;;)if (foo()) bar();
else break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_1/output.terser.js | JavaScript | for (; foo(); ) bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_2/input.js | JavaScript | for (; bar(); ) {
if (foo()) baz();
else break;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_2/output.js | JavaScript | for (; bar() && foo(); ) baz();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_2/output.mangleOnly.js | JavaScript | for(; bar();){
if (foo()) baz();
else break;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_2/output.terser.js | JavaScript | for (; bar() && foo(); ) baz();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_3/input.js | JavaScript | for (; bar(); ) {
if (foo()) baz();
else break;
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_3/output.js | JavaScript | for (; bar() && foo(); ) {
baz();
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_3/output.mangleOnly.js | JavaScript | for(; bar();){
if (foo()) baz();
else break;
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_3/output.terser.js | JavaScript | for (; bar() && foo(); ) {
baz();
stuff1();
stuff2();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_4/input.js | JavaScript | for (; bar(); ) {
x();
y();
if (foo()) baz();
else break;
z();
k();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_4/output.js | JavaScript | for (; bar() && (x(), y(), foo()); ) baz(), z(), k();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_4/output.mangleOnly.js | JavaScript | for(; bar();){
x();
y();
if (foo()) baz();
else break;
z();
k();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/drop_if_else_break_4/output.terser.js | JavaScript | for (; bar() && (x(), y(), foo()); ) baz(), z(), k();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/evaluate/input.js | JavaScript | while (true) {
a();
}
while (false) {
b();
}
do {
c();
} while (true);
do {
d();
} while (false);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/evaluate/output.js | JavaScript | for (;;) a();
for (;;) c();
d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/evaluate/output.mangleOnly.js | JavaScript | while(true){
a();
}
while(false){
b();
}
do {
c();
}while (true)
do {
d();
}while (false)
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/evaluate/output.terser.js | JavaScript | for (;;) a();
for (;;) c();
d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_1/input.js | JavaScript | for (("foo" in {}); 0; );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_1/output.js | JavaScript | for (("foo" in {}); 0; );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_1/output.mangleOnly.js | JavaScript | for(("foo" in {}); 0;);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_1/output.terser.js | JavaScript | for (("foo" in {}); 0; );
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_2/input.js | JavaScript | for (
function () {
("foo" in {});
};
0;
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_2/output.js | JavaScript | for (
function () {
("foo" in {});
};
0;
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_2/output.mangleOnly.js | JavaScript | for(function() {
("foo" in {});
}; 0;);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/in_parenthesis_2/output.terser.js | JavaScript | for (
function () {
("foo" in {});
};
0;
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/init_side_effects/input.js | JavaScript | for ((function () {})(), i = 0; i < 5; i++) console.log(i);
for ((function () {})(); i < 10; i++) console.log(i);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/init_side_effects/output.js | JavaScript | for (i = 0; i < 5; i++) console.log(i);
for (; i < 10; i++) console.log(i);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/init_side_effects/output.mangleOnly.js | JavaScript | for((function() {})(), i = 0; i < 5; i++)console.log(i);
for((function() {})(); i < 10; i++)console.log(i);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/init_side_effects/output.terser.js | JavaScript | for (i = 0; i < 5; i++) console.log(i);
for (; i < 10; i++) console.log(i);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1532/input.js | JavaScript | function f(x, y) {
do {
if (x) break;
foo();
} while (false);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1532/output.js | JavaScript | function f(x, y) {
do {
if (x) break;
foo();
} while (false);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1532/output.mangleOnly.js | JavaScript | function f(f, o) {
do {
if (f) break;
foo();
}while (false)
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1532/output.terser.js | JavaScript | function f(x, y) {
do {
if (x) break;
foo();
} while (false);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1648/input.js | JavaScript | function f() {
x();
var b = 1;
while (1);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1648/output.js | JavaScript | function f() {
for (x(); ; );
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1648/output.mangleOnly.js | JavaScript | function i() {
x();
var i = 1;
while(1);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_1648/output.terser.js | JavaScript | function f() {
for (x(); 1; );
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186/input.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186/output.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) do {
do {
alert(e);
}while (--e)
}while (e)
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186/output.terser.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify/input.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify/output.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) do {
do {
alert(e);
}while (--e)
}while (e)
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify/output.terser.js | JavaScript | var x = 3;
if (foo())
do {
do {
alert(x);
} while (--x);
} while (x);
else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces_ie8/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces_ie8/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces_ie8/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_braces_ie8/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_ie8/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_ie8/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_ie8/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_beautify_ie8/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces_ie8/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces_ie8/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces_ie8/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_braces_ie8/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else {
bar();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_ie8/input.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_ie8/output.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_ie8/output.mangleOnly.js | JavaScript | var e = 3;
if (foo()) {
do {
do {
alert(e);
}while (--e)
}while (e)
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_186_ie8/output.terser.js | JavaScript | var x = 3;
if (foo()) {
do {
do {
alert(x);
} while (--x);
} while (x);
} else bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_2740_1/input.js | JavaScript | for (;;) break;
for (a(); ; ) break;
for (; b(); ) break;
for (c(); d(); ) break;
for (; ; e()) break;
for (f(); ; g()) break;
for (; h(); i()) break;
for (j(); k(); l()) break;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_2740_1/output.js | JavaScript | a();
b();
c();
d();
f();
h();
j();
k();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/loops/issue_2740_1/output.mangleOnly.js | JavaScript | for(;;)break;
for(a();;)break;
for(; b();)break;
for(c(); d();)break;
for(;; e())break;
for(f();; g())break;
for(; h(); i())break;
for(j(); k(); l())break;
| 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.