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/array_hole/output.mangleOnly.js | JavaScript | console.log([
1,
2,
,
3
][1], [
1,
2,
,
3
][2], [
1,
2,
,
3
][3]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/array_hole/output.terser.js | JavaScript | console.log(2, void 0, 3);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/computed_property/input.js | JavaScript | console.log({ a: "bar", [console.log("foo")]: 42 }.a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/computed_property/output.js | JavaScript | console.log({ a: "bar", [console.log("foo")]: 42 }.a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/computed_property/output.mangleOnly.js | JavaScript | console.log({
a: "bar",
[console.log("foo")]: 42
}.a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/computed_property/output.terser.js | JavaScript | console.log({ a: "bar", [console.log("foo")]: 42 }.a);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_pure/input.js | JavaScript | function Simulator() {
/abc/.index = 1;
this._aircraft = [];
}
(function () {}.prototype.destroy = x());
(class {}.prototype.destroy = y());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_pure/output.js | JavaScript | function Simulator() {
this._aircraft = [];
}
x();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_pure/output.mangleOnly.js | JavaScript | function t() {
/abc/.index = 1;
this._aircraft = [];
}
(function() {}.prototype.destroy = x());
(class {
}.prototype.destroy = y());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_pure/output.terser.js | JavaScript | function Simulator() {
this._aircraft = [];
}
x();
y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_strict/input.js | JavaScript | function Simulator() {
/abc/.index = 1;
this._aircraft = [];
}
(function () {}.prototype.destroy = x());
(class {}.prototype.destroy = y());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_strict/output.js | JavaScript | function Simulator() {
this._aircraft = [];
}
x();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_strict/output.mangleOnly.js | JavaScript | function t() {
/abc/.index = 1;
this._aircraft = [];
}
(function() {}.prototype.destroy = x());
(class {
}.prototype.destroy = y());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/const_prop_assign_strict/output.terser.js | JavaScript | function Simulator() {
this._aircraft = [];
}
x();
y();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_1/input.js | JavaScript | "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB";
"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC";
const prop = Symbol("foo");
const obj = {
[prop]: "bar",
baz: 1,
qux: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
void: "Void",
};
console.log(
obj[prop],
obj["baz"],
obj.qux,
obj[7],
obj[0],
obj[1 + 0],
obj[null],
obj[undefined],
obj[1 / 0],
obj[NaN],
obj.void
);
console.log(obj.null, obj.undefined, obj.Infinity, obj.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_1/output.js | JavaScript | "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB";
"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC";
const prop = Symbol("foo");
const obj = {
[prop]: "bar",
A: 1,
B: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
C: "Void",
};
console.log(
obj[prop],
obj["A"],
obj.B,
obj[7],
obj[0],
obj[1 + 0],
obj[null],
obj[void 0],
obj[1 / 0],
obj[NaN],
obj.C
);
console.log(obj.null, obj.undefined, obj.Infinity, obj.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_1/output.mangleOnly.js | JavaScript | "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB";
"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC";
const A = Symbol("foo");
const B = {
[A]: "bar",
baz: 1,
qux: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
void: "Void"
};
console.log(B[A], B["baz"], B.qux, B[7], B[0], B[1 + 0], B[null], B[undefined], B[1 / 0], B[NaN], B.void);
console.log(B.null, B.undefined, B.Infinity, B.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_1/output.terser.js | JavaScript | "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB";
"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC";
const prop = Symbol("foo");
const obj = {
[prop]: "bar",
A: 1,
B: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
C: "Void",
};
console.log(
obj[prop],
obj["A"],
obj.B,
obj[7],
obj[0],
obj[1 + 0],
obj[null],
obj[void 0],
obj[1 / 0],
obj[NaN],
obj.C
);
console.log(obj.null, obj.undefined, obj.Infinity, obj.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_2/input.js | JavaScript | const prop = Symbol("foo");
const obj = {
[prop]: "bar",
baz: 1,
qux: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
void: "Void",
};
console.log(
obj[prop],
obj["baz"],
obj.qux,
obj[7],
obj[0],
obj[1 + 0],
obj[null],
obj[undefined],
obj[1 / 0],
obj[NaN],
obj.void
);
console.log(obj.null, obj.undefined, obj.Infinity, obj.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_2/output.js | JavaScript | const n = Symbol("foo"),
o = {
[n]: "bar",
o: 1,
i: 2,
7: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
l: "Void",
};
console.log(
o[n],
o.o,
o.i,
o[7],
o[0],
o[1],
o.null,
o[void 0],
o[1 / 0],
o.NaN,
o.l
),
console.log(o.null, o.undefined, o.Infinity, o.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_2/output.mangleOnly.js | JavaScript | const n = Symbol("foo");
const o = {
[n]: "bar",
baz: 1,
qux: 2,
[3 + 4]: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
void: "Void"
};
console.log(o[n], o["baz"], o.qux, o[7], o[0], o[1 + 0], o[null], o[undefined], o[1 / 0], o[NaN], o.void);
console.log(o.null, o.undefined, o.Infinity, o.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dont_mangle_computed_property_2/output.terser.js | JavaScript | const n = Symbol("foo"),
o = {
[n]: "bar",
o: 1,
i: 2,
7: "seven",
0: "zero",
1: "one",
null: "Null",
undefined: "Undefined",
Infinity: "infinity",
NaN: "nan",
l: "Void",
};
console.log(
o[n],
o.o,
o.i,
o[7],
o[0],
o[1],
o.null,
o[void 0],
o[1 / 0],
o.NaN,
o.l
),
console.log(o.null, o.undefined, o.Infinity, o.NaN);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties/input.js | JavaScript | a["foo"] = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
a["1_1"] = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties/output.js | JavaScript | a.foo = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
a["1_1"] = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties/output.mangleOnly.js | JavaScript | a["foo"] = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
a["1_1"] = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties/output.terser.js | JavaScript | a.foo = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
a["1_1"] = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties_es5/input.js | JavaScript | a["foo"] = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties_es5/output.js | JavaScript | a.foo = "bar";
a.if = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties_es5/output.mangleOnly.js | JavaScript | a["foo"] = "bar";
a["if"] = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/dot_properties_es5/output.terser.js | JavaScript | a.foo = "bar";
a.if = "if";
a["*"] = "asterisk";
a["ຳ"] = "unicode";
a[""] = "whitespace";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_array_length/input.js | JavaScript | a = [1, 2, 3].length;
a = [1, 2, 3].join()["len" + "gth"];
a = [1, 2, b].length;
a = [1, 2, 3].join(b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_array_length/output.js | JavaScript | a = 3;
a = 5;
a = [
1,
2,
b
].length;
a = [
1,
2,
3
].join(b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_array_length/output.mangleOnly.js | JavaScript | a = [
1,
2,
3
].length;
a = [
1,
2,
3
].join()["len" + "gth"];
a = [
1,
2,
b
].length;
a = [
1,
2,
3
].join(b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_array_length/output.terser.js | JavaScript | a = 3;
a = 5;
a = [1, 2, b].length;
a = [1, 2, 3].join(b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_string_length/input.js | JavaScript | a = "foo".length;
a = ("foo" + "bar")["len" + "gth"];
a = b.length;
a = ("foo" + b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_string_length/output.js | JavaScript | a = 3;
a = 6;
a = b.length;
a = ("foo" + b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_string_length/output.mangleOnly.js | JavaScript | a = "foo".length;
a = ("foo" + "bar")["len" + "gth"];
a = b.length;
a = ("foo" + b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/evaluate_string_length/output.terser.js | JavaScript | a = 3;
a = 6;
a = b.length;
a = ("foo" + b).length;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_chars_as_properties/input.js | JavaScript | var o = {
"\0": 0,
"\x01": 1,
"\x02": 2,
"\x03": 3,
"\x04": 4,
"\x05": 5,
"\x06": 6,
"\x07": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"\x0e": 14,
"\x0f": 15,
"\x10": 16,
"\x11": 17,
"\x12": 18,
"\x13": 19,
"\x14": 20,
"\x15": 21,
"\x16": 22,
"\x17": 23,
"\x18": 24,
"\x19": 25,
"\x1a": 26,
"\x1b": 27,
"\x1c": 28,
"\x1d": 29,
"\x1e": 30,
"\x1f": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"\x7f": 127,
"\x80": 128,
"\x81": 129,
"\x82": 130,
"\x83": 131,
"\x84": 132,
"\x85": 133,
"\x86": 134,
"\x87": 135,
"\x88": 136,
"\x89": 137,
"\x8a": 138,
"\x8b": 139,
"\x8c": 140,
"\x8d": 141,
"\x8e": 142,
"\x8f": 143,
"\x90": 144,
"\x91": 145,
"\x92": 146,
"\x93": 147,
"\x94": 148,
"\x95": 149,
"\x96": 150,
"\x97": 151,
"\x98": 152,
"\x99": 153,
"\x9a": 154,
"\x9b": 155,
"\x9c": 156,
"\x9d": 157,
"\x9e": 158,
"\x9f": 159,
"\xa0": 160,
"\xa1": 161,
"\xa2": 162,
"\xa3": 163,
"\xa4": 164,
"\xa5": 165,
"\xa6": 166,
"\xa7": 167,
"\xa8": 168,
"\xa9": 169,
"\xaa": 170,
"\xab": 171,
"\xac": 172,
"\xad": 173,
"\xae": 174,
"\xaf": 175,
"\xb0": 176,
"\xb1": 177,
"\xb2": 178,
"\xb3": 179,
"\xb4": 180,
"\xb5": 181,
"\xb6": 182,
"\xb7": 183,
"\xb8": 184,
"\xb9": 185,
"\xba": 186,
"\xbb": 187,
"\xbc": 188,
"\xbd": 189,
"\xbe": 190,
"\xbf": 191,
"\xc0": 192,
"\xc1": 193,
"\xc2": 194,
"\xc3": 195,
"\xc4": 196,
"\xc5": 197,
"\xc6": 198,
"\xc7": 199,
"\xc8": 200,
"\xc9": 201,
"\xca": 202,
"\xcb": 203,
"\xcc": 204,
"\xcd": 205,
"\xce": 206,
"\xcf": 207,
"\xd0": 208,
"\xd1": 209,
"\xd2": 210,
"\xd3": 211,
"\xd4": 212,
"\xd5": 213,
"\xd6": 214,
"\xd7": 215,
"\xd8": 216,
"\xd9": 217,
"\xda": 218,
"\xdb": 219,
"\xdc": 220,
"\xdd": 221,
"\xde": 222,
"\xdf": 223,
"\xe0": 224,
"\xe1": 225,
"\xe2": 226,
"\xe3": 227,
"\xe4": 228,
"\xe5": 229,
"\xe6": 230,
"\xe7": 231,
"\xe8": 232,
"\xe9": 233,
"\xea": 234,
"\xeb": 235,
"\xec": 236,
"\xed": 237,
"\xee": 238,
"\xef": 239,
"\xf0": 240,
"\xf1": 241,
"\xf2": 242,
"\xf3": 243,
"\xf4": 244,
"\xf5": 245,
"\xf6": 246,
"\xf7": 247,
"\xf8": 248,
"\xf9": 249,
"\xfa": 250,
"\xfb": 251,
"\xfc": 252,
"\xfd": 253,
"\xfe": 254,
"\xff": 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_chars_as_properties/output.js | JavaScript | var o = {
"\0": 0,
"\x01": 1,
"\x02": 2,
"\x03": 3,
"\x04": 4,
"\x05": 5,
"\x06": 6,
"\x07": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"\x0e": 14,
"\x0f": 15,
"\x10": 16,
"\x11": 17,
"\x12": 18,
"\x13": 19,
"\x14": 20,
"\x15": 21,
"\x16": 22,
"\x17": 23,
"\x18": 24,
"\x19": 25,
"\x1a": 26,
"\x1b": 27,
"\x1c": 28,
"\x1d": 29,
"\x1e": 30,
"\x1f": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"\x7f": 127,
"\x80": 128,
"\x81": 129,
"\x82": 130,
"\x83": 131,
"\x84": 132,
"\x85": 133,
"\x86": 134,
"\x87": 135,
"\x88": 136,
"\x89": 137,
"\x8a": 138,
"\x8b": 139,
"\x8c": 140,
"\x8d": 141,
"\x8e": 142,
"\x8f": 143,
"\x90": 144,
"\x91": 145,
"\x92": 146,
"\x93": 147,
"\x94": 148,
"\x95": 149,
"\x96": 150,
"\x97": 151,
"\x98": 152,
"\x99": 153,
"\x9a": 154,
"\x9b": 155,
"\x9c": 156,
"\x9d": 157,
"\x9e": 158,
"\x9f": 159,
"\xa0": 160,
"\xa1": 161,
"\xa2": 162,
"\xa3": 163,
"\xa4": 164,
"\xa5": 165,
"\xa6": 166,
"\xa7": 167,
"\xa8": 168,
"\xa9": 169,
ª: 170,
"\xab": 171,
"\xac": 172,
"\xad": 173,
"\xae": 174,
"\xaf": 175,
"\xb0": 176,
"\xb1": 177,
"\xb2": 178,
"\xb3": 179,
"\xb4": 180,
µ: 181,
"\xb6": 182,
"\xb7": 183,
"\xb8": 184,
"\xb9": 185,
º: 186,
"\xbb": 187,
"\xbc": 188,
"\xbd": 189,
"\xbe": 190,
"\xbf": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"\xd7": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"\xf7": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_chars_as_properties/output.mangleOnly.js | JavaScript | var x = {
"\0": 0,
"\x01": 1,
"\x02": 2,
"\x03": 3,
"\x04": 4,
"\x05": 5,
"\x06": 6,
"\x07": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"\x0e": 14,
"\x0f": 15,
"\x10": 16,
"\x11": 17,
"\x12": 18,
"\x13": 19,
"\x14": 20,
"\x15": 21,
"\x16": 22,
"\x17": 23,
"\x18": 24,
"\x19": 25,
"\x1a": 26,
"\x1b": 27,
"\x1c": 28,
"\x1d": 29,
"\x1e": 30,
"\x1f": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"\x7f": 127,
"\x80": 128,
"\x81": 129,
"\x82": 130,
"\x83": 131,
"\x84": 132,
"\x85": 133,
"\x86": 134,
"\x87": 135,
"\x88": 136,
"\x89": 137,
"\x8a": 138,
"\x8b": 139,
"\x8c": 140,
"\x8d": 141,
"\x8e": 142,
"\x8f": 143,
"\x90": 144,
"\x91": 145,
"\x92": 146,
"\x93": 147,
"\x94": 148,
"\x95": 149,
"\x96": 150,
"\x97": 151,
"\x98": 152,
"\x99": 153,
"\x9a": 154,
"\x9b": 155,
"\x9c": 156,
"\x9d": 157,
"\x9e": 158,
"\x9f": 159,
"\xa0": 160,
"\xa1": 161,
"\xa2": 162,
"\xa3": 163,
"\xa4": 164,
"\xa5": 165,
"\xa6": 166,
"\xa7": 167,
"\xa8": 168,
"\xa9": 169,
"\xaa": 170,
"\xab": 171,
"\xac": 172,
"\xad": 173,
"\xae": 174,
"\xaf": 175,
"\xb0": 176,
"\xb1": 177,
"\xb2": 178,
"\xb3": 179,
"\xb4": 180,
"\xb5": 181,
"\xb6": 182,
"\xb7": 183,
"\xb8": 184,
"\xb9": 185,
"\xba": 186,
"\xbb": 187,
"\xbc": 188,
"\xbd": 189,
"\xbe": 190,
"\xbf": 191,
"\xc0": 192,
"\xc1": 193,
"\xc2": 194,
"\xc3": 195,
"\xc4": 196,
"\xc5": 197,
"\xc6": 198,
"\xc7": 199,
"\xc8": 200,
"\xc9": 201,
"\xca": 202,
"\xcb": 203,
"\xcc": 204,
"\xcd": 205,
"\xce": 206,
"\xcf": 207,
"\xd0": 208,
"\xd1": 209,
"\xd2": 210,
"\xd3": 211,
"\xd4": 212,
"\xd5": 213,
"\xd6": 214,
"\xd7": 215,
"\xd8": 216,
"\xd9": 217,
"\xda": 218,
"\xdb": 219,
"\xdc": 220,
"\xdd": 221,
"\xde": 222,
"\xdf": 223,
"\xe0": 224,
"\xe1": 225,
"\xe2": 226,
"\xe3": 227,
"\xe4": 228,
"\xe5": 229,
"\xe6": 230,
"\xe7": 231,
"\xe8": 232,
"\xe9": 233,
"\xea": 234,
"\xeb": 235,
"\xec": 236,
"\xed": 237,
"\xee": 238,
"\xef": 239,
"\xf0": 240,
"\xf1": 241,
"\xf2": 242,
"\xf3": 243,
"\xf4": 244,
"\xf5": 245,
"\xf6": 246,
"\xf7": 247,
"\xf8": 248,
"\xf9": 249,
"\xfa": 250,
"\xfb": 251,
"\xfc": 252,
"\xfd": 253,
"\xfe": 254,
"\xff": 255
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_chars_as_properties/output.terser.js | JavaScript | var o = {
"\0": 0,
"\x01": 1,
"\x02": 2,
"\x03": 3,
"\x04": 4,
"\x05": 5,
"\x06": 6,
"\x07": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"\x0e": 14,
"\x0f": 15,
"\x10": 16,
"\x11": 17,
"\x12": 18,
"\x13": 19,
"\x14": 20,
"\x15": 21,
"\x16": 22,
"\x17": 23,
"\x18": 24,
"\x19": 25,
"\x1a": 26,
"\x1b": 27,
"\x1c": 28,
"\x1d": 29,
"\x1e": 30,
"\x1f": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"\x7f": 127,
"\x80": 128,
"\x81": 129,
"\x82": 130,
"\x83": 131,
"\x84": 132,
"\x85": 133,
"\x86": 134,
"\x87": 135,
"\x88": 136,
"\x89": 137,
"\x8a": 138,
"\x8b": 139,
"\x8c": 140,
"\x8d": 141,
"\x8e": 142,
"\x8f": 143,
"\x90": 144,
"\x91": 145,
"\x92": 146,
"\x93": 147,
"\x94": 148,
"\x95": 149,
"\x96": 150,
"\x97": 151,
"\x98": 152,
"\x99": 153,
"\x9a": 154,
"\x9b": 155,
"\x9c": 156,
"\x9d": 157,
"\x9e": 158,
"\x9f": 159,
"\xa0": 160,
"\xa1": 161,
"\xa2": 162,
"\xa3": 163,
"\xa4": 164,
"\xa5": 165,
"\xa6": 166,
"\xa7": 167,
"\xa8": 168,
"\xa9": 169,
"\xaa": 170,
"\xab": 171,
"\xac": 172,
"\xad": 173,
"\xae": 174,
"\xaf": 175,
"\xb0": 176,
"\xb1": 177,
"\xb2": 178,
"\xb3": 179,
"\xb4": 180,
"\xb5": 181,
"\xb6": 182,
"\xb7": 183,
"\xb8": 184,
"\xb9": 185,
"\xba": 186,
"\xbb": 187,
"\xbc": 188,
"\xbd": 189,
"\xbe": 190,
"\xbf": 191,
"\xc0": 192,
"\xc1": 193,
"\xc2": 194,
"\xc3": 195,
"\xc4": 196,
"\xc5": 197,
"\xc6": 198,
"\xc7": 199,
"\xc8": 200,
"\xc9": 201,
"\xca": 202,
"\xcb": 203,
"\xcc": 204,
"\xcd": 205,
"\xce": 206,
"\xcf": 207,
"\xd0": 208,
"\xd1": 209,
"\xd2": 210,
"\xd3": 211,
"\xd4": 212,
"\xd5": 213,
"\xd6": 214,
"\xd7": 215,
"\xd8": 216,
"\xd9": 217,
"\xda": 218,
"\xdb": 219,
"\xdc": 220,
"\xdd": 221,
"\xde": 222,
"\xdf": 223,
"\xe0": 224,
"\xe1": 225,
"\xe2": 226,
"\xe3": 227,
"\xe4": 228,
"\xe5": 229,
"\xe6": 230,
"\xe7": 231,
"\xe8": 232,
"\xe9": 233,
"\xea": 234,
"\xeb": 235,
"\xec": 236,
"\xed": 237,
"\xee": 238,
"\xef": 239,
"\xf0": 240,
"\xf1": 241,
"\xf2": 242,
"\xf3": 243,
"\xf4": 244,
"\xf5": 245,
"\xf6": 246,
"\xf7": 247,
"\xf8": 248,
"\xf9": 249,
"\xfa": 250,
"\xfb": 251,
"\xfc": 252,
"\xfd": 253,
"\xfe": 254,
"\xff": 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_hex_chars_as_properties/input.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_hex_chars_as_properties/output.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_hex_chars_as_properties/output.mangleOnly.js | JavaScript | var x = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_hex_chars_as_properties/output.terser.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_unicode_chars_as_properties/input.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_unicode_chars_as_properties/output.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_unicode_chars_as_properties/output.mangleOnly.js | JavaScript | var x = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/first_256_unicode_chars_as_properties/output.terser.js | JavaScript | var o = {
"\0": 0,
"": 1,
"": 2,
"": 3,
"": 4,
"": 5,
"": 6,
"": 7,
"\b": 8,
"\t": 9,
"\n": 10,
"\v": 11,
"\f": 12,
"\r": 13,
"": 14,
"": 15,
"": 16,
"": 17,
"": 18,
"": 19,
"": 20,
"": 21,
"": 22,
"": 23,
"": 24,
"": 25,
"": 26,
"": 27,
"": 28,
"": 29,
"": 30,
"": 31,
" ": 32,
"!": 33,
'"': 34,
"#": 35,
$: 36,
"%": 37,
"&": 38,
"'": 39,
"(": 40,
")": 41,
"*": 42,
"+": 43,
",": 44,
"-": 45,
".": 46,
"/": 47,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
":": 58,
";": 59,
"<": 60,
"=": 61,
">": 62,
"?": 63,
"@": 64,
A: 65,
B: 66,
C: 67,
D: 68,
E: 69,
F: 70,
G: 71,
H: 72,
I: 73,
J: 74,
K: 75,
L: 76,
M: 77,
N: 78,
O: 79,
P: 80,
Q: 81,
R: 82,
S: 83,
T: 84,
U: 85,
V: 86,
W: 87,
X: 88,
Y: 89,
Z: 90,
"[": 91,
"\\": 92,
"]": 93,
"^": 94,
_: 95,
"`": 96,
a: 97,
b: 98,
c: 99,
d: 100,
e: 101,
f: 102,
g: 103,
h: 104,
i: 105,
j: 106,
k: 107,
l: 108,
m: 109,
n: 110,
o: 111,
p: 112,
q: 113,
r: 114,
s: 115,
t: 116,
u: 117,
v: 118,
w: 119,
x: 120,
y: 121,
z: 122,
"{": 123,
"|": 124,
"}": 125,
"~": 126,
"": 127,
"": 128,
"": 129,
"": 130,
"": 131,
"": 132,
"
": 133,
"": 134,
"": 135,
"": 136,
"": 137,
"": 138,
"": 139,
"": 140,
"": 141,
"": 142,
"": 143,
"": 144,
"": 145,
"": 146,
"": 147,
"": 148,
"": 149,
"": 150,
"": 151,
"": 152,
"": 153,
"": 154,
"": 155,
"": 156,
"": 157,
"": 158,
"": 159,
" ": 160,
"¡": 161,
"¢": 162,
"£": 163,
"¤": 164,
"¥": 165,
"¦": 166,
"§": 167,
"¨": 168,
"©": 169,
ª: 170,
"«": 171,
"¬": 172,
"": 173,
"®": 174,
"¯": 175,
"°": 176,
"±": 177,
"²": 178,
"³": 179,
"´": 180,
µ: 181,
"¶": 182,
"·": 183,
"¸": 184,
"¹": 185,
º: 186,
"»": 187,
"¼": 188,
"½": 189,
"¾": 190,
"¿": 191,
À: 192,
Á: 193,
Â: 194,
Ã: 195,
Ä: 196,
Å: 197,
Æ: 198,
Ç: 199,
È: 200,
É: 201,
Ê: 202,
Ë: 203,
Ì: 204,
Í: 205,
Î: 206,
Ï: 207,
Ð: 208,
Ñ: 209,
Ò: 210,
Ó: 211,
Ô: 212,
Õ: 213,
Ö: 214,
"×": 215,
Ø: 216,
Ù: 217,
Ú: 218,
Û: 219,
Ü: 220,
Ý: 221,
Þ: 222,
ß: 223,
à: 224,
á: 225,
â: 226,
ã: 227,
ä: 228,
å: 229,
æ: 230,
ç: 231,
è: 232,
é: 233,
ê: 234,
ë: 235,
ì: 236,
í: 237,
î: 238,
ï: 239,
ð: 240,
ñ: 241,
ò: 242,
ó: 243,
ô: 244,
õ: 245,
ö: 246,
"÷": 247,
ø: 248,
ù: 249,
ú: 250,
û: 251,
ü: 252,
ý: 253,
þ: 254,
ÿ: 255,
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_1/input.js | JavaScript | console.log(
{
p: function () {
return 42;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_1/output.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_1/output.mangleOnly.js | JavaScript | console.log({
p: function() {
return 42;
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_1/output.terser.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_2/input.js | JavaScript | console.log(
{
a: 42,
p: function () {
return this.a;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_2/output.js | JavaScript | console.log(
{
a: 42,
p: function () {
return this.a;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_2/output.mangleOnly.js | JavaScript | console.log({
a: 42,
p: function() {
return this.a;
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_2/output.terser.js | JavaScript | console.log(
{
a: 42,
p: function () {
return this.a;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_3/input.js | JavaScript | a = 42;
console.log(
{
p: function () {
return (function () {
return this.a;
})();
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_3/output.js | JavaScript | a = 42;
console.log(
(function () {
return this.a;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_3/output.mangleOnly.js | JavaScript | a = 42;
console.log({
p: function() {
return (function() {
return this.a;
})();
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_3/output.terser.js | JavaScript | a = 42;
console.log(
(function () {
return this.a;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_4/input.js | JavaScript | function foo() {}
console.log(
{
a: foo(),
p: function () {
return 42;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_4/output.js | JavaScript | function foo() {}
console.log(
(foo(),
function () {
return 42;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_4/output.mangleOnly.js | JavaScript | function n() {}
console.log({
a: n(),
p: function() {
return 42;
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_4/output.terser.js | JavaScript | function foo() {}
console.log(
(foo(),
function () {
return 42;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_5/input.js | JavaScript | console.log(
{
p: "FAIL",
p: function () {
return 42;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_5/output.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_5/output.mangleOnly.js | JavaScript | console.log({
p: "FAIL",
p: function() {
return 42;
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_5/output.terser.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_6/input.js | JavaScript | console.log({ p: () => 42 }.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_6/output.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_6/output.mangleOnly.js | JavaScript | console.log({
p: ()=>42
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_6/output.terser.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_7/input.js | JavaScript | console.log(
{
p() {
return 42;
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_7/output.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_7/output.mangleOnly.js | JavaScript | console.log({
p () {
return 42;
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_7/output.terser.js | JavaScript | console.log(42);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_8/input.js | JavaScript | console.log(
{
*p() {
return x();
},
}.p()
);
console.log(
{
async p() {
return await x();
},
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_8/output.js | JavaScript | console.log(
{
*p() {
return x();
},
}.p()
);
console.log((async () => await x())());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_8/output.mangleOnly.js | JavaScript | console.log({
*p () {
return x();
}
}.p());
console.log({
async p () {
return await x();
}
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_8/output.terser.js | JavaScript | console.log(
{
*p() {
return x();
},
}.p()
);
console.log((async () => await x())());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_9/input.js | JavaScript | a = 42;
console.log(
{
p: () =>
(function () {
return this.a;
})(),
}.p()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_9/output.js | JavaScript | a = 42;
console.log(
(function () {
return this.a;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_9/output.mangleOnly.js | JavaScript | a = 42;
console.log({
p: ()=>(function() {
return this.a;
})()
}.p());
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2208_9/output.terser.js | JavaScript | a = 42;
console.log(
(function () {
return this.a;
})()
);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2256/input.js | JavaScript | var g = {};
({ keep: 1 });
g.keep = g.change;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2256/output.js | JavaScript | var g = {};
g.keep = g.g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2256/output.mangleOnly.js | JavaScript | var e = {};
({
keep: 1
});
e.keep = e.change;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2256/output.terser.js | JavaScript | var g = {};
g.keep = g.g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2321/input.js | JavaScript | var f = {
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
};
var foo = new f.foo();
var bar = f.bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2321/output.js | JavaScript | var f = {
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
};
var foo = new f.foo();
var bar = f.bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2321/output.mangleOnly.js | JavaScript | var o = {
foo: function() {
console.log("foo");
},
bar () {
console.log("bar");
}
};
var a = new o.foo();
var r = o.bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2321/output.terser.js | JavaScript | var f = {
foo: function () {
console.log("foo");
},
bar() {
console.log("bar");
},
};
var foo = new f.foo();
var bar = f.bar();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2513/input.js | JavaScript | !(function (Infinity, NaN, undefined) {
console.log("a"[1 / 0], "b"["Infinity"]);
console.log("c"[0 / 0], "d"["NaN"]);
console.log("e"[void 0], "f"["undefined"]);
})(0, 0, 0);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2513/output.js | JavaScript | !(function (Infinity, NaN, undefined) {
console.log("a"[1 / 0], "b"[1 / 0]);
console.log("c".NaN, "d".NaN);
console.log("e"[void 0], "f"[void 0]);
})(0, 0, 0);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2513/output.mangleOnly.js | JavaScript | !(function(o, n, e) {
console.log("a"[1 / 0], "b"["Infinity"]);
console.log("c"[0 / 0], "d"["NaN"]);
console.log("e"[void 0], "f"["undefined"]);
})(0, 0, 0);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2513/output.terser.js | JavaScript | !(function (Infinity, NaN, undefined) {
console.log("a"[1 / 0], "b"[1 / 0]);
console.log("c".NaN, "d".NaN);
console.log("e"[void 0], "f"[void 0]);
})(0, 0, 0);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2816/input.js | JavaScript | "use strict";
var o = { a: 1 };
o.b = 2;
o.a = 3;
o.c = 4;
console.log(o.a, o.b, o.c);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/properties/issue_2816/output.js | JavaScript | "use strict";
var o = { a: 1, b: 2 };
o.a = 3;
o.c = 4;
console.log(o.a, o.b, o.c);
| 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.