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/properties/methods_keep_quoted_true/input.js | JavaScript | class C {
Quoted() {}
Unquoted() {}
}
f1({ Quoted() {}, Unquoted() {}, Prop: 3 });
f2({ Quoted: function () {} });
f3({ Quoted: () => {} });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/methods_keep_quoted_true/output.js | JavaScript | class C {
Quoted() {}
o() {}
}
f1({ Quoted() {}, o() {}, Prop: 3 });
f2({ Quoted() {} });
f3({ Quoted() {} });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/methods_keep_quoted_true/output.mangleOnly.js | JavaScript | class o {
Quoted() {}
Unquoted() {}
}
f1({
Quoted () {},
Unquoted () {},
Prop: 3
});
f2({
Quoted: function() {}
});
f3({
Quoted: ()=>{}
});
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/methods_keep_quoted_true/output.terser.js | JavaScript | class C {
Quoted() {}
o() {}
}
f1({ Quoted() {}, o() {}, Prop: 3 });
f2({ Quoted() {} });
f3({ Quoted() {} });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype/input.js | JavaScript | Array.prototype.splice.apply(a, [1, 2, b, c]);
Function.prototype.call.apply(console.log, console, ["foo"]);
Number.prototype.toFixed.call(Math.PI, 2);
Object.prototype.hasOwnProperty.call(d, "foo");
RegExp.prototype.test.call(/foo/, "bar");
String.prototype.indexOf.call(e, "bar");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype/output.js | JavaScript | [].splice.apply(a, [1, 2, b, c]);
(function () {}.call.apply(console.log, console, ["foo"]));
(0).toFixed.call(Math.PI, 2);
({}.hasOwnProperty.call(d, "foo"));
/t/.test.call(/foo/, "bar");
"".indexOf.call(e, "bar");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype/output.mangleOnly.js | JavaScript | Array.prototype.splice.apply(a, [
1,
2,
b,
c
]);
Function.prototype.call.apply(console.log, console, [
"foo"
]);
Number.prototype.toFixed.call(Math.PI, 2);
Object.prototype.hasOwnProperty.call(d, "foo");
RegExp.prototype.test.call(/foo/, "bar");
String.prototype.indexOf.call(e, "bar");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype/output.terser.js | JavaScript | [].splice.apply(a, [1, 2, b, c]);
(function () {}.call.apply(console.log, console, ["foo"]));
(0).toFixed.call(Math.PI, 2);
({}.hasOwnProperty.call(d, "foo"));
/t/.test.call(/foo/, "bar");
"".indexOf.call(e, "bar");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype_lhs/input.js | JavaScript | console.log(
(function () {
Function.prototype.bar = "PASS";
return function () {};
})().bar
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype_lhs/output.js | JavaScript | console.log(
(function () {
Function.prototype.bar = "PASS";
return function () {};
})().bar
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype_lhs/output.mangleOnly.js | JavaScript | console.log((function() {
Function.prototype.bar = "PASS";
return function() {};
})().bar);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/native_prototype_lhs/output.terser.js | JavaScript | console.log(
(function () {
Function.prototype.bar = "PASS";
return function () {};
})().bar
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/new_this/input.js | JavaScript | new {
f: function (a) {
this.a = a;
},
}.f(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/new_this/output.js | JavaScript | new (function (a) {
this.a = a;
})(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/new_this/output.mangleOnly.js | JavaScript | new {
f: function(f) {
this.a = f;
}
}.f(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/new_this/output.terser.js | JavaScript | new (function (a) {
this.a = a;
})(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_1/input.js | JavaScript | var C = 1;
console.log(C);
var obj = {
bar: function () {
return C + C;
},
};
console.log(obj.bar());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_1/output.js | JavaScript | console.log(1);
var obj = {
bar: function () {
return 2;
},
};
console.log(obj.bar());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_1/output.mangleOnly.js | JavaScript | var o = 1;
console.log(o);
var r = {
bar: function() {
return o + o;
}
};
console.log(r.bar());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_1/output.terser.js | JavaScript | console.log(1);
var obj = {
bar: function () {
return 2;
},
};
console.log(obj.bar());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_2/input.js | JavaScript | var C = 1;
console.log(C);
var obj = {
"": function () {
return C + C;
},
};
console.log(obj[""]());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_2/output.js | JavaScript | console.log(1);
console.log(2);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_2/output.mangleOnly.js | JavaScript | var o = 1;
console.log(o);
var n = {
"": function() {
return o + o;
}
};
console.log(n[""]());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/prop_side_effects_2/output.terser.js | JavaScript | console.log(1);
console.log(2);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/skip_undeclared_properties_by_default/input.js | JavaScript | var Foo = {
foo: function () {
return Bar.bar();
},
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/skip_undeclared_properties_by_default/output.js | JavaScript | var r = {
o: function () {
return a.bar();
},
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/skip_undeclared_properties_by_default/output.mangleOnly.js | JavaScript | var r = {
foo: function() {
return Bar.bar();
}
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/skip_undeclared_properties_by_default/output.terser.js | JavaScript | var r = {
o: function () {
return a.bar();
},
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/sub_properties/input.js | JavaScript | a[0] = 0;
a["0"] = 1;
a[3.14] = 2;
a["3" + ".14"] = 3;
a["i" + "f"] = 4;
a["foo" + " bar"] = 5;
a[0 / 0] = 6;
a[null] = 7;
a[undefined] = 8;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/sub_properties/output.js | JavaScript | a[0] = 0;
a[0] = 1;
a[3.14] = 2;
a[3.14] = 3;
a.if = 4;
a["foo bar"] = 5;
a.NaN = 6;
a.null = 7;
a[void 0] = 8;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/sub_properties/output.mangleOnly.js | JavaScript | a[0] = 0;
a["0"] = 1;
a[3.14] = 2;
a["3" + ".14"] = 3;
a["i" + "f"] = 4;
a["foo" + " bar"] = 5;
a[0 / 0] = 6;
a[null] = 7;
a[undefined] = 8;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/sub_properties/output.terser.js | JavaScript | a[0] = 0;
a[0] = 1;
a[3.14] = 2;
a[3.14] = 3;
a.if = 4;
a["foo bar"] = 5;
a.NaN = 6;
a.null = 7;
a[void 0] = 8;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/unsafe_methods_regex/input.js | JavaScript | var f = {
123: function () {
console.log("123");
},
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
Baz: function () {
console.log("baz");
},
BOO: function () {
console.log("boo");
},
null: function () {
console.log("null");
},
undefined: function () {
console.log("undefined");
},
};
f[123]();
new f.foo();
f.bar();
f.Baz();
f.BOO();
new f.null();
new f.undefined();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/unsafe_methods_regex/output.js | JavaScript | var f = {
123() {
console.log("123");
},
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
Baz() {
console.log("baz");
},
BOO() {
console.log("boo");
},
null: function () {
console.log("null");
},
undefined: function () {
console.log("undefined");
},
};
f[123]();
new f.foo();
f.bar();
f.Baz();
f.BOO();
new f.null();
new f.undefined();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/unsafe_methods_regex/output.mangleOnly.js | JavaScript | var o = {
123: function() {
console.log("123");
},
foo: function() {
console.log("foo");
},
bar () {
console.log("bar");
},
Baz: function() {
console.log("baz");
},
BOO: function() {
console.log("boo");
},
null: function() {
console.log("null");
},
undefined: function() {
console.log("undefined");
}
};
o[123]();
new o.foo();
o.bar();
o.Baz();
o.BOO();
new o.null();
new o.undefined();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/unsafe_methods_regex/output.terser.js | JavaScript | var f = {
123() {
console.log("123");
},
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
Baz() {
console.log("baz");
},
BOO() {
console.log("boo");
},
null: function () {
console.log("null");
},
undefined: function () {
console.log("undefined");
},
};
f[123]();
new f.foo();
f.bar();
f.Baz();
f.BOO();
new f.null();
new f.undefined();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/arithmetic/input.js | JavaScript | foo() + foo();
foo() - bar();
foo() * "bar";
bar() / foo();
bar() & bar();
bar() | "bar";
"bar" >> foo();
"bar" << bar();
"bar" >>> "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/arithmetic/output.js | JavaScript | bar();
bar();
bar(), bar();
bar();
bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/arithmetic/output.mangleOnly.js | JavaScript | foo() + foo();
foo() - bar();
foo() * "bar";
bar() / foo();
bar() & bar();
bar() | "bar";
"bar" >> foo();
"bar" << bar();
"bar" >>> "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/arithmetic/output.terser.js | JavaScript | bar();
bar();
bar(), bar();
bar();
bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/array/input.js | JavaScript | var a;
function f(b) {
Math.floor(a / b);
Math.floor(c / b);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/array/output.js | JavaScript | var a;
function f(b) {
c;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/array/output.mangleOnly.js | JavaScript | var o;
function a(a) {
Math.floor(o / a);
Math.floor(c / a);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/array/output.terser.js | JavaScript | var a;
function f(b) {
c;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/assign/input.js | JavaScript | var a;
function f(b) {
a = foo();
b *= 4 + foo();
c >>= 0 | foo();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/assign/output.js | JavaScript | var a;
function f(b) {
a = foo();
b *= 4 + foo();
c >>= 0 | foo();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/assign/output.mangleOnly.js | JavaScript | var o;
function f(f) {
o = foo();
f *= 4 + foo();
c >>= 0 | foo();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/assign/output.terser.js | JavaScript | var a;
function f(b) {
a = foo();
b *= 4 + foo();
c >>= 0 | foo();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/babel/input.js | JavaScript | function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor))
throw new TypeError("Cannot call a class as a function");
}
var Foo = function Foo() {
_classCallCheck(this, Foo);
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/babel/output.js | JavaScript | function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) throw TypeError("Cannot call a class as a function");
}
var Foo = function() {};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/babel/output.mangleOnly.js | JavaScript | function n(n, a) {
if (!(n instanceof a)) throw new TypeError("Cannot call a class as a function");
}
var a = function a() {
n(this, a);
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/babel/output.terser.js | JavaScript | function _class_call_check(instance, Constructor) {
if (!(instance instanceof Constructor))
throw new TypeError("Cannot call a class as a function");
}
var Foo = function () {};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_and/input.js | JavaScript | foo() && foo();
foo() && bar();
foo() && "bar";
bar() && foo();
bar() && bar();
bar() && "bar";
"bar" && foo();
"bar" && bar();
"bar" && "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_and/output.js | JavaScript | foo() && bar();
bar();
bar() && bar();
bar();
"bar" && bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_and/output.mangleOnly.js | JavaScript | foo() && foo();
foo() && bar();
foo() && "bar";
bar() && foo();
bar() && bar();
bar() && "bar";
"bar" && foo();
"bar" && bar();
"bar" && "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_and/output.terser.js | JavaScript | foo() && bar();
bar();
bar() && bar();
bar();
"bar" && bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_or/input.js | JavaScript | foo() || foo();
foo() || bar();
foo() || "bar";
bar() || foo();
bar() || bar();
bar() || "bar";
"bar" || foo();
"bar" || bar();
"bar" || "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_or/output.js | JavaScript | foo() || bar();
bar();
bar() || bar();
bar();
"bar" || bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_or/output.mangleOnly.js | JavaScript | foo() || foo();
foo() || bar();
foo() || "bar";
bar() || foo();
bar() || bar();
bar() || "bar";
"bar" || foo();
"bar" || bar();
"bar" || "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/boolean_or/output.terser.js | JavaScript | foo() || bar();
bar();
bar() || bar();
bar();
"bar" || bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/conditional/input.js | JavaScript | pure(1 | a() ? 2 & b() : 7 ^ c());
pure(1 | a() ? 2 & b() : 5);
pure(1 | a() ? 4 : 7 ^ c());
pure(1 | a() ? 4 : 5);
pure(3 ? 2 & b() : 7 ^ c());
pure(3 ? 2 & b() : 5);
pure(3 ? 4 : 7 ^ c());
pure(3 ? 4 : 5);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/conditional/output.js | JavaScript | 1 | a() ? b() : c();
1 | a() && b();
1 | a() || c();
a();
3 ? b() : c();
3 && b();
3 || c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/conditional/output.mangleOnly.js | JavaScript | pure(1 | a() ? 2 & b() : 7 ^ c());
pure(1 | a() ? 2 & b() : 5);
pure(1 | a() ? 4 : 7 ^ c());
pure(1 | a() ? 4 : 5);
pure(3 ? 2 & b() : 7 ^ c());
pure(3 ? 2 & b() : 5);
pure(3 ? 4 : 7 ^ c());
pure(3 ? 4 : 5);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/conditional/output.terser.js | JavaScript | 1 | a() ? b() : c();
1 | a() && b();
1 | a() || c();
a();
3 ? b() : c();
3 && b();
3 || c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/func/input.js | JavaScript | function f(a, b) {
Math.floor(a / b);
Math.floor(c / b);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/func/output.js | JavaScript | function f(a, b) {
Math.floor(c / b);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/func/output.mangleOnly.js | JavaScript | function o(o, f) {
Math.floor(o / f);
Math.floor(c / f);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/func/output.terser.js | JavaScript | function f(a, b) {
Math.floor(c / b);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_1/input.js | JavaScript | /*@__PURE__*/ a();
/*@__PURE__*/ b();
/*@__PURE__*/ c();
/*@__PURE__*/ d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_1/output.js | JavaScript | /*@__PURE__*/ c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_1/output.mangleOnly.js | JavaScript | a();
b();
c();
d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_1/output.terser.js | JavaScript | /*@__PURE__*/ c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_2/input.js | JavaScript | /*@__PURE__*/ a(1)(2)(3);
/*@__PURE__*/ b(1)(2)(3);
/*@__PURE__*/ c(1)(2)(3);
/*@__PURE__*/ d(1)(2)(3);
/*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ f(1)(2)(3);
/*@__PURE__*/ g(1)(2)(3);
/*@__PURE__*/ h(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_2/output.js | JavaScript | /*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ f(1)(2)(3);
/*@__PURE__*/ g(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_2/output.mangleOnly.js | JavaScript | a(1)(2)(3);
b(1)(2)(3);
c(1)(2)(3);
d(1)(2)(3);
e(1)(2)(3);
f(1)(2)(3);
g(1)(2)(3);
h(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_2/output.terser.js | JavaScript | /*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ f(1)(2)(3);
/*@__PURE__*/ g(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_3/input.js | JavaScript | /*@__PURE__*/ a.x(1).y(2).z(3);
/*@__PURE__*/ b.x(1).y(2).z(3);
/*@__PURE__*/ c.x(1).y(2).z(3);
/*@__PURE__*/ d.x(1).y(2).z(3);
/*@__PURE__*/ e.x(1).y(2).z(3);
/*@__PURE__*/ f.x(1).y(2).z(3);
/*@__PURE__*/ g.x(1).y(2).z(3);
/*@__PURE__*/ h.x(1).y(2).z(3);
/*@__PURE__*/ i.x(1).y(2).z(3);
/*@__PURE__*/ j.x(1).y(2).z(3);
/*@__PURE__*/ k.x(1).y(2).z(3);
/*@__PURE__*/ l.x(1).y(2).z(3);
/*@__PURE__*/ m.x(1).y(2).z(3);
/*@__PURE__*/ n.x(1).y(2).z(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_3/output.js | JavaScript | /*@__PURE__*/ h.x(1).y(2).z(3);
/*@__PURE__*/ i.x(1).y(2).z(3);
/*@__PURE__*/ j.x(1).y(2).z(3);
/*@__PURE__*/ k.x(1).y(2).z(3);
/*@__PURE__*/ l.x(1).y(2).z(3);
/*@__PURE__*/ m.x(1).y(2).z(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_3/output.mangleOnly.js | JavaScript | a.x(1).y(2).z(3);
b.x(1).y(2).z(3);
c.x(1).y(2).z(3);
d.x(1).y(2).z(3);
e.x(1).y(2).z(3);
f.x(1).y(2).z(3);
g.x(1).y(2).z(3);
h.x(1).y(2).z(3);
i.x(1).y(2).z(3);
j.x(1).y(2).z(3);
k.x(1).y(2).z(3);
l.x(1).y(2).z(3);
m.x(1).y(2).z(3);
n.x(1).y(2).z(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_3/output.terser.js | JavaScript | /*@__PURE__*/ h.x(1).y(2).z(3);
/*@__PURE__*/ i.x(1).y(2).z(3);
/*@__PURE__*/ j.x(1).y(2).z(3);
/*@__PURE__*/ k.x(1).y(2).z(3);
/*@__PURE__*/ l.x(1).y(2).z(3);
/*@__PURE__*/ m.x(1).y(2).z(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_4/input.js | JavaScript | x(), y();
w(), x(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_4/output.js | JavaScript | y();
w(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_4/output.mangleOnly.js | JavaScript | x(), y();
w(), x(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_4/output.terser.js | JavaScript | y();
w(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_5/input.js | JavaScript | [x()];
[x(), y()];
[w(), x(), y()];
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_5/output.js | JavaScript | y();
w(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_5/output.mangleOnly.js | JavaScript | [
x()
];
[
x(),
y()
];
[
w(),
x(),
y()
];
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2629_5/output.terser.js | JavaScript | y();
w(), y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2638/input.js | JavaScript | /*@__PURE__*/ (g() || h())(x(), y());
/*@__PURE__*/ (a() || b())(c(), d());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2638/output.js | JavaScript | /*@__PURE__*/ x(), y();
/*@__PURE__*/ (a() || b())(c(), d());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2638/output.mangleOnly.js | JavaScript | (g() || h())(x(), y());
(a() || b())(c(), d());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2638/output.terser.js | JavaScript | /*@__PURE__*/ x(), y();
/*@__PURE__*/ (a() || b())(c(), d());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_1/input.js | JavaScript | /*@__PURE__*/ new a();
/*@__PURE__*/ new b();
new /*@__PURE__*/ c();
/*@__PURE__*/ new d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_1/output.js | JavaScript | new /*@__PURE__*/ c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_1/output.mangleOnly.js | JavaScript | new a();
new b();
new c();
new d();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_1/output.terser.js | JavaScript | new /*@__PURE__*/ c();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_2/input.js | JavaScript | /*@__PURE__*/ new a(1)(2)(3);
/*@__PURE__*/ new (b(1))(2)(3);
/*@__PURE__*/ new (c(1)(2))(3);
/*@__PURE__*/ new (d(1)(2)(3))();
new /*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ new f(1)(2)(3);
/*@__PURE__*/ new g(1)(2)(3);
/*@__PURE__*/ new h(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_2/output.js | JavaScript | new /*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ new f(1)(2)(3);
/*@__PURE__*/ new g(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_2/output.mangleOnly.js | JavaScript | new a(1)(2)(3);
new (b(1))(2)(3);
new (c(1)(2))(3);
new (d(1)(2)(3))();
new e(1)(2)(3);
new f(1)(2)(3);
new g(1)(2)(3);
new h(1)(2)(3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/pure_funcs/issue_2705_2/output.terser.js | JavaScript | new /*@__PURE__*/ e(1)(2)(3);
/*@__PURE__*/ new f(1)(2)(3);
/*@__PURE__*/ new g(1)(2)(3);
| 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.