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_transforms_module/tests/fixture/common/lazy/whitelist/reexport-default/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _white().default; } }); function _white() { const data = /*#__PURE__*/ _interop_require_default(require("white")); _white = function() { return data; }; return data; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-default/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("white")); else if (typeof define === "function" && define.amd) define([ "exports", "white" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.white); })(this, function(exports, _white) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _white.default; } }); _white = /*#__PURE__*/ _interop_require_default(_white); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-named/input.js
JavaScript
import { named1 } from "white"; export { named1 }; import { named2 } from "black"; export { named2 };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-named/output.amd.js
JavaScript
define([ "require", "exports", "white", "black" ], function(require, exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { named1: function() { return _white.named1; }, named2: function() { return _black.named2; } }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-named/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { named1: function() { return _white().named1; }, named2: function() { return _black.named2; } }); function _white() { const data = require("white"); _white = function() { return data; }; return data; } const _black = require("black");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-named/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("white"), require("black")); else if (typeof define === "function" && define.amd) define([ "exports", "white", "black" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.white, global.black); })(this, function(exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { named1: function() { return _white.named1; }, named2: function() { return _black.named2; } }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-namespace/input.js
JavaScript
import * as namespace1 from "white"; export { namespace1 }; import * as namespace2 from "black"; export { namespace2 };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-namespace/output.amd.js
JavaScript
define([ "require", "exports", "white", "black" ], function(require, exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { namespace1: function() { return _white; }, namespace2: function() { return _black; } }); _white = /*#__PURE__*/ _interop_require_wildcard(_white); _black = /*#__PURE__*/ _interop_require_wildcard(_black); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-namespace/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { namespace1: function() { return _white(); }, namespace2: function() { return _black; } }); function _white() { const data = /*#__PURE__*/ _interop_require_wildcard(require("white")); _white = function() { return data; }; return data; } const _black = /*#__PURE__*/ _interop_require_wildcard(require("black"));
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/reexport-namespace/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("white"), require("black")); else if (typeof define === "function" && define.amd) define([ "exports", "white", "black" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.white, global.black); })(this, function(exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { namespace1: function() { return _white; }, namespace2: function() { return _black; } }); _white = /*#__PURE__*/ _interop_require_wildcard(_white); _black = /*#__PURE__*/ _interop_require_wildcard(_black); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/sideeffect/input.js
JavaScript
import "white"; import "black";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/sideeffect/output.amd.js
JavaScript
define([ "require", "exports", "white", "black" ], function(require, exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/sideeffect/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); require("white"); require("black");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/lazy/whitelist/sideeffect/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("white"), require("black")); else if (typeof define === "function" && define.amd) define([ "exports", "white", "black" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.white, global.black); })(this, function(exports, _white, _black) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/many-exports-chunked/1/input.js
JavaScript
export const a000 = 0; export const a001 = 1; export const a002 = 2; export const a003 = 3; export const a004 = 4; export const a005 = 5; export const a006 = 6; export const a007 = 7; export const a008 = 8; export const a009 = 9; export const a010 = 10; export const a011 = 11; export const a012 = 12; export const a013 = 13; export const a014 = 14; export const a015 = 15; export const a016 = 16; export const a017 = 17; export const a018 = 18; export const a019 = 19; export const a020 = 20; export const a021 = 21; export const a022 = 22; export const a023 = 23; export const a024 = 24; export const a025 = 25; export const a026 = 26; export const a027 = 27; export const a028 = 28; export const a029 = 29; export const a030 = 30; export const a031 = 31; export const a032 = 32; export const a033 = 33; export const a034 = 34; export const a035 = 35; export const a036 = 36; export const a037 = 37; export const a038 = 38; export const a039 = 39; export const a040 = 40; export const a041 = 41; export const a042 = 42; export const a043 = 43; export const a044 = 44; export const a045 = 45; export const a046 = 46; export const a047 = 47; export const a048 = 48; export const a049 = 49; export const a050 = 50; export const a051 = 51; export const a052 = 52; export const a053 = 53; export const a054 = 54; export const a055 = 55; export const a056 = 56; export const a057 = 57; export const a058 = 58; export const a059 = 59; export const a060 = 60; export const a061 = 61; export const a062 = 62; export const a063 = 63; export const a064 = 64; export const a065 = 65; export const a066 = 66; export const a067 = 67; export const a068 = 68; export const a069 = 69; export const a070 = 70; export const a071 = 71; export const a072 = 72; export const a073 = 73; export const a074 = 74; export const a075 = 75; export const a076 = 76; export const a077 = 77; export const a078 = 78; export const a079 = 79; export const a080 = 80; export const a081 = 81; export const a082 = 82; export const a083 = 83; export const a084 = 84; export const a085 = 85; export const a086 = 86; export const a087 = 87; export const a088 = 88; export const a089 = 89; export const a090 = 90; export const a091 = 91; export const a092 = 92; export const a093 = 93; export const a094 = 94; export const a095 = 95; export const a096 = 96; export const a097 = 97; export const a098 = 98; export const a099 = 99; export const a100 = 100; export const a101 = 101; export const a102 = 102; export const a103 = 103; export const a104 = 104; export const a105 = 105; export const a106 = 106; export const a107 = 107; export const a108 = 108; export const a109 = 109; export const a110 = 110; export const a111 = 111; export const a112 = 112; export const a113 = 113; export const a114 = 114; export const a115 = 115; export const a116 = 116; export const a117 = 117; export const a118 = 118; export const a119 = 119; export const a120 = 120; export const a121 = 121; export const a122 = 122; export const a123 = 123; export const a124 = 124; export const a125 = 125; export const a126 = 126; export const a127 = 127; export const a128 = 128; export const a129 = 129; export const a130 = 130; export const a131 = 131; export const a132 = 132; export const a133 = 133; export const a134 = 134; export const a135 = 135; export const a136 = 136; export const a137 = 137; export const a138 = 138; export const a139 = 139; export const a140 = 140; export const a141 = 141; export const a142 = 142; export const a143 = 143; export const a144 = 144; export const a145 = 145; export const a146 = 146; export const a147 = 147; export const a148 = 148; export const a149 = 149; export const a150 = 150; export const a151 = 151; export const a152 = 152; export const a153 = 153; export const a154 = 154; export const a155 = 155; export const a156 = 156; export const a157 = 157; export const a158 = 158; export const a159 = 159; export const a160 = 160; export const a161 = 161; export const a162 = 162; export const a163 = 163; export const a164 = 164; export const a165 = 165; export const a166 = 166; export const a167 = 167; export const a168 = 168; export const a169 = 169; export const a170 = 170; export const a171 = 171; export const a172 = 172; export const a173 = 173; export const a174 = 174; export const a175 = 175; export const a176 = 176; export const a177 = 177; export const a178 = 178; export const a179 = 179; export const a180 = 180; export const a181 = 181; export const a182 = 182; export const a183 = 183; export const a184 = 184; export const a185 = 185; export const a186 = 186; export const a187 = 187; export const a188 = 188; export const a189 = 189; export const a190 = 190; export const a191 = 191; export const a192 = 192; export const a193 = 193; export const a194 = 194; export const a195 = 195; export const a196 = 196; export const a197 = 197; export const a198 = 198; export const a199 = 199; export const a200 = 200; export const a201 = 201; export const a202 = 202; export const a203 = 203; export const a204 = 204; export const a205 = 205; export const a206 = 206; export const a207 = 207; export const a208 = 208; export const a209 = 209; export const a210 = 210; export const a211 = 211; export const a212 = 212; export const a213 = 213; export const a214 = 214; export const a215 = 215; export const a216 = 216; export const a217 = 217; export const a218 = 218; export const a219 = 219; export const a220 = 220; export const a221 = 221; export const a222 = 222; export const a223 = 223; export const a224 = 224; export const a225 = 225; export const a226 = 226; export const a227 = 227; export const a228 = 228; export const a229 = 229; export const a230 = 230; export const a231 = 231; export const a232 = 232; export const a233 = 233; export const a234 = 234; export const a235 = 235; export const a236 = 236; export const a237 = 237; export const a238 = 238; export const a239 = 239; export const a240 = 240; export const a241 = 241; export const a242 = 242; export const a243 = 243; export const a244 = 244; export const a245 = 245; export const a246 = 246; export const a247 = 247; export const a248 = 248; export const a249 = 249;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/many-exports-chunked/1/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { a000: function() { return a000; }, a001: function() { return a001; }, a002: function() { return a002; }, a003: function() { return a003; }, a004: function() { return a004; }, a005: function() { return a005; }, a006: function() { return a006; }, a007: function() { return a007; }, a008: function() { return a008; }, a009: function() { return a009; }, a010: function() { return a010; }, a011: function() { return a011; }, a012: function() { return a012; }, a013: function() { return a013; }, a014: function() { return a014; }, a015: function() { return a015; }, a016: function() { return a016; }, a017: function() { return a017; }, a018: function() { return a018; }, a019: function() { return a019; }, a020: function() { return a020; }, a021: function() { return a021; }, a022: function() { return a022; }, a023: function() { return a023; }, a024: function() { return a024; }, a025: function() { return a025; }, a026: function() { return a026; }, a027: function() { return a027; }, a028: function() { return a028; }, a029: function() { return a029; }, a030: function() { return a030; }, a031: function() { return a031; }, a032: function() { return a032; }, a033: function() { return a033; }, a034: function() { return a034; }, a035: function() { return a035; }, a036: function() { return a036; }, a037: function() { return a037; }, a038: function() { return a038; }, a039: function() { return a039; }, a040: function() { return a040; }, a041: function() { return a041; }, a042: function() { return a042; }, a043: function() { return a043; }, a044: function() { return a044; }, a045: function() { return a045; }, a046: function() { return a046; }, a047: function() { return a047; }, a048: function() { return a048; }, a049: function() { return a049; }, a050: function() { return a050; }, a051: function() { return a051; }, a052: function() { return a052; }, a053: function() { return a053; }, a054: function() { return a054; }, a055: function() { return a055; }, a056: function() { return a056; }, a057: function() { return a057; }, a058: function() { return a058; }, a059: function() { return a059; }, a060: function() { return a060; }, a061: function() { return a061; }, a062: function() { return a062; }, a063: function() { return a063; }, a064: function() { return a064; }, a065: function() { return a065; }, a066: function() { return a066; }, a067: function() { return a067; }, a068: function() { return a068; }, a069: function() { return a069; }, a070: function() { return a070; }, a071: function() { return a071; }, a072: function() { return a072; }, a073: function() { return a073; }, a074: function() { return a074; }, a075: function() { return a075; }, a076: function() { return a076; }, a077: function() { return a077; }, a078: function() { return a078; }, a079: function() { return a079; }, a080: function() { return a080; }, a081: function() { return a081; }, a082: function() { return a082; }, a083: function() { return a083; }, a084: function() { return a084; }, a085: function() { return a085; }, a086: function() { return a086; }, a087: function() { return a087; }, a088: function() { return a088; }, a089: function() { return a089; }, a090: function() { return a090; }, a091: function() { return a091; }, a092: function() { return a092; }, a093: function() { return a093; }, a094: function() { return a094; }, a095: function() { return a095; }, a096: function() { return a096; }, a097: function() { return a097; }, a098: function() { return a098; }, a099: function() { return a099; }, a100: function() { return a100; }, a101: function() { return a101; }, a102: function() { return a102; }, a103: function() { return a103; }, a104: function() { return a104; }, a105: function() { return a105; }, a106: function() { return a106; }, a107: function() { return a107; }, a108: function() { return a108; }, a109: function() { return a109; }, a110: function() { return a110; }, a111: function() { return a111; }, a112: function() { return a112; }, a113: function() { return a113; }, a114: function() { return a114; }, a115: function() { return a115; }, a116: function() { return a116; }, a117: function() { return a117; }, a118: function() { return a118; }, a119: function() { return a119; }, a120: function() { return a120; }, a121: function() { return a121; }, a122: function() { return a122; }, a123: function() { return a123; }, a124: function() { return a124; }, a125: function() { return a125; }, a126: function() { return a126; }, a127: function() { return a127; }, a128: function() { return a128; }, a129: function() { return a129; }, a130: function() { return a130; }, a131: function() { return a131; }, a132: function() { return a132; }, a133: function() { return a133; }, a134: function() { return a134; }, a135: function() { return a135; }, a136: function() { return a136; }, a137: function() { return a137; }, a138: function() { return a138; }, a139: function() { return a139; }, a140: function() { return a140; }, a141: function() { return a141; }, a142: function() { return a142; }, a143: function() { return a143; }, a144: function() { return a144; }, a145: function() { return a145; }, a146: function() { return a146; }, a147: function() { return a147; }, a148: function() { return a148; }, a149: function() { return a149; }, a150: function() { return a150; }, a151: function() { return a151; }, a152: function() { return a152; }, a153: function() { return a153; }, a154: function() { return a154; }, a155: function() { return a155; }, a156: function() { return a156; }, a157: function() { return a157; }, a158: function() { return a158; }, a159: function() { return a159; }, a160: function() { return a160; }, a161: function() { return a161; }, a162: function() { return a162; }, a163: function() { return a163; }, a164: function() { return a164; }, a165: function() { return a165; }, a166: function() { return a166; }, a167: function() { return a167; }, a168: function() { return a168; }, a169: function() { return a169; }, a170: function() { return a170; }, a171: function() { return a171; }, a172: function() { return a172; }, a173: function() { return a173; }, a174: function() { return a174; }, a175: function() { return a175; }, a176: function() { return a176; }, a177: function() { return a177; }, a178: function() { return a178; }, a179: function() { return a179; }, a180: function() { return a180; }, a181: function() { return a181; }, a182: function() { return a182; }, a183: function() { return a183; }, a184: function() { return a184; }, a185: function() { return a185; }, a186: function() { return a186; }, a187: function() { return a187; }, a188: function() { return a188; }, a189: function() { return a189; }, a190: function() { return a190; }, a191: function() { return a191; }, a192: function() { return a192; }, a193: function() { return a193; }, a194: function() { return a194; }, a195: function() { return a195; }, a196: function() { return a196; }, a197: function() { return a197; }, a198: function() { return a198; }, a199: function() { return a199; }, a200: function() { return a200; }, a201: function() { return a201; }, a202: function() { return a202; }, a203: function() { return a203; }, a204: function() { return a204; }, a205: function() { return a205; }, a206: function() { return a206; }, a207: function() { return a207; }, a208: function() { return a208; }, a209: function() { return a209; }, a210: function() { return a210; }, a211: function() { return a211; }, a212: function() { return a212; }, a213: function() { return a213; }, a214: function() { return a214; }, a215: function() { return a215; }, a216: function() { return a216; }, a217: function() { return a217; }, a218: function() { return a218; }, a219: function() { return a219; }, a220: function() { return a220; }, a221: function() { return a221; }, a222: function() { return a222; }, a223: function() { return a223; }, a224: function() { return a224; }, a225: function() { return a225; }, a226: function() { return a226; }, a227: function() { return a227; }, a228: function() { return a228; }, a229: function() { return a229; }, a230: function() { return a230; }, a231: function() { return a231; }, a232: function() { return a232; }, a233: function() { return a233; }, a234: function() { return a234; }, a235: function() { return a235; }, a236: function() { return a236; }, a237: function() { return a237; }, a238: function() { return a238; }, a239: function() { return a239; }, a240: function() { return a240; }, a241: function() { return a241; }, a242: function() { return a242; }, a243: function() { return a243; }, a244: function() { return a244; }, a245: function() { return a245; }, a246: function() { return a246; }, a247: function() { return a247; }, a248: function() { return a248; }, a249: function() { return a249; } }); const a000 = 0; const a001 = 1; const a002 = 2; const a003 = 3; const a004 = 4; const a005 = 5; const a006 = 6; const a007 = 7; const a008 = 8; const a009 = 9; const a010 = 10; const a011 = 11; const a012 = 12; const a013 = 13; const a014 = 14; const a015 = 15; const a016 = 16; const a017 = 17; const a018 = 18; const a019 = 19; const a020 = 20; const a021 = 21; const a022 = 22; const a023 = 23; const a024 = 24; const a025 = 25; const a026 = 26; const a027 = 27; const a028 = 28; const a029 = 29; const a030 = 30; const a031 = 31; const a032 = 32; const a033 = 33; const a034 = 34; const a035 = 35; const a036 = 36; const a037 = 37; const a038 = 38; const a039 = 39; const a040 = 40; const a041 = 41; const a042 = 42; const a043 = 43; const a044 = 44; const a045 = 45; const a046 = 46; const a047 = 47; const a048 = 48; const a049 = 49; const a050 = 50; const a051 = 51; const a052 = 52; const a053 = 53; const a054 = 54; const a055 = 55; const a056 = 56; const a057 = 57; const a058 = 58; const a059 = 59; const a060 = 60; const a061 = 61; const a062 = 62; const a063 = 63; const a064 = 64; const a065 = 65; const a066 = 66; const a067 = 67; const a068 = 68; const a069 = 69; const a070 = 70; const a071 = 71; const a072 = 72; const a073 = 73; const a074 = 74; const a075 = 75; const a076 = 76; const a077 = 77; const a078 = 78; const a079 = 79; const a080 = 80; const a081 = 81; const a082 = 82; const a083 = 83; const a084 = 84; const a085 = 85; const a086 = 86; const a087 = 87; const a088 = 88; const a089 = 89; const a090 = 90; const a091 = 91; const a092 = 92; const a093 = 93; const a094 = 94; const a095 = 95; const a096 = 96; const a097 = 97; const a098 = 98; const a099 = 99; const a100 = 100; const a101 = 101; const a102 = 102; const a103 = 103; const a104 = 104; const a105 = 105; const a106 = 106; const a107 = 107; const a108 = 108; const a109 = 109; const a110 = 110; const a111 = 111; const a112 = 112; const a113 = 113; const a114 = 114; const a115 = 115; const a116 = 116; const a117 = 117; const a118 = 118; const a119 = 119; const a120 = 120; const a121 = 121; const a122 = 122; const a123 = 123; const a124 = 124; const a125 = 125; const a126 = 126; const a127 = 127; const a128 = 128; const a129 = 129; const a130 = 130; const a131 = 131; const a132 = 132; const a133 = 133; const a134 = 134; const a135 = 135; const a136 = 136; const a137 = 137; const a138 = 138; const a139 = 139; const a140 = 140; const a141 = 141; const a142 = 142; const a143 = 143; const a144 = 144; const a145 = 145; const a146 = 146; const a147 = 147; const a148 = 148; const a149 = 149; const a150 = 150; const a151 = 151; const a152 = 152; const a153 = 153; const a154 = 154; const a155 = 155; const a156 = 156; const a157 = 157; const a158 = 158; const a159 = 159; const a160 = 160; const a161 = 161; const a162 = 162; const a163 = 163; const a164 = 164; const a165 = 165; const a166 = 166; const a167 = 167; const a168 = 168; const a169 = 169; const a170 = 170; const a171 = 171; const a172 = 172; const a173 = 173; const a174 = 174; const a175 = 175; const a176 = 176; const a177 = 177; const a178 = 178; const a179 = 179; const a180 = 180; const a181 = 181; const a182 = 182; const a183 = 183; const a184 = 184; const a185 = 185; const a186 = 186; const a187 = 187; const a188 = 188; const a189 = 189; const a190 = 190; const a191 = 191; const a192 = 192; const a193 = 193; const a194 = 194; const a195 = 195; const a196 = 196; const a197 = 197; const a198 = 198; const a199 = 199; const a200 = 200; const a201 = 201; const a202 = 202; const a203 = 203; const a204 = 204; const a205 = 205; const a206 = 206; const a207 = 207; const a208 = 208; const a209 = 209; const a210 = 210; const a211 = 211; const a212 = 212; const a213 = 213; const a214 = 214; const a215 = 215; const a216 = 216; const a217 = 217; const a218 = 218; const a219 = 219; const a220 = 220; const a221 = 221; const a222 = 222; const a223 = 223; const a224 = 224; const a225 = 225; const a226 = 226; const a227 = 227; const a228 = 228; const a229 = 229; const a230 = 230; const a231 = 231; const a232 = 232; const a233 = 233; const a234 = 234; const a235 = 235; const a236 = 236; const a237 = 237; const a238 = 238; const a239 = 239; const a240 = 240; const a241 = 241; const a242 = 242; const a243 = 243; const a244 = 244; const a245 = 245; const a246 = 246; const a247 = 247; const a248 = 248; const a249 = 249; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/many-exports-chunked/1/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { a000: function() { return a000; }, a001: function() { return a001; }, a002: function() { return a002; }, a003: function() { return a003; }, a004: function() { return a004; }, a005: function() { return a005; }, a006: function() { return a006; }, a007: function() { return a007; }, a008: function() { return a008; }, a009: function() { return a009; }, a010: function() { return a010; }, a011: function() { return a011; }, a012: function() { return a012; }, a013: function() { return a013; }, a014: function() { return a014; }, a015: function() { return a015; }, a016: function() { return a016; }, a017: function() { return a017; }, a018: function() { return a018; }, a019: function() { return a019; }, a020: function() { return a020; }, a021: function() { return a021; }, a022: function() { return a022; }, a023: function() { return a023; }, a024: function() { return a024; }, a025: function() { return a025; }, a026: function() { return a026; }, a027: function() { return a027; }, a028: function() { return a028; }, a029: function() { return a029; }, a030: function() { return a030; }, a031: function() { return a031; }, a032: function() { return a032; }, a033: function() { return a033; }, a034: function() { return a034; }, a035: function() { return a035; }, a036: function() { return a036; }, a037: function() { return a037; }, a038: function() { return a038; }, a039: function() { return a039; }, a040: function() { return a040; }, a041: function() { return a041; }, a042: function() { return a042; }, a043: function() { return a043; }, a044: function() { return a044; }, a045: function() { return a045; }, a046: function() { return a046; }, a047: function() { return a047; }, a048: function() { return a048; }, a049: function() { return a049; }, a050: function() { return a050; }, a051: function() { return a051; }, a052: function() { return a052; }, a053: function() { return a053; }, a054: function() { return a054; }, a055: function() { return a055; }, a056: function() { return a056; }, a057: function() { return a057; }, a058: function() { return a058; }, a059: function() { return a059; }, a060: function() { return a060; }, a061: function() { return a061; }, a062: function() { return a062; }, a063: function() { return a063; }, a064: function() { return a064; }, a065: function() { return a065; }, a066: function() { return a066; }, a067: function() { return a067; }, a068: function() { return a068; }, a069: function() { return a069; }, a070: function() { return a070; }, a071: function() { return a071; }, a072: function() { return a072; }, a073: function() { return a073; }, a074: function() { return a074; }, a075: function() { return a075; }, a076: function() { return a076; }, a077: function() { return a077; }, a078: function() { return a078; }, a079: function() { return a079; }, a080: function() { return a080; }, a081: function() { return a081; }, a082: function() { return a082; }, a083: function() { return a083; }, a084: function() { return a084; }, a085: function() { return a085; }, a086: function() { return a086; }, a087: function() { return a087; }, a088: function() { return a088; }, a089: function() { return a089; }, a090: function() { return a090; }, a091: function() { return a091; }, a092: function() { return a092; }, a093: function() { return a093; }, a094: function() { return a094; }, a095: function() { return a095; }, a096: function() { return a096; }, a097: function() { return a097; }, a098: function() { return a098; }, a099: function() { return a099; }, a100: function() { return a100; }, a101: function() { return a101; }, a102: function() { return a102; }, a103: function() { return a103; }, a104: function() { return a104; }, a105: function() { return a105; }, a106: function() { return a106; }, a107: function() { return a107; }, a108: function() { return a108; }, a109: function() { return a109; }, a110: function() { return a110; }, a111: function() { return a111; }, a112: function() { return a112; }, a113: function() { return a113; }, a114: function() { return a114; }, a115: function() { return a115; }, a116: function() { return a116; }, a117: function() { return a117; }, a118: function() { return a118; }, a119: function() { return a119; }, a120: function() { return a120; }, a121: function() { return a121; }, a122: function() { return a122; }, a123: function() { return a123; }, a124: function() { return a124; }, a125: function() { return a125; }, a126: function() { return a126; }, a127: function() { return a127; }, a128: function() { return a128; }, a129: function() { return a129; }, a130: function() { return a130; }, a131: function() { return a131; }, a132: function() { return a132; }, a133: function() { return a133; }, a134: function() { return a134; }, a135: function() { return a135; }, a136: function() { return a136; }, a137: function() { return a137; }, a138: function() { return a138; }, a139: function() { return a139; }, a140: function() { return a140; }, a141: function() { return a141; }, a142: function() { return a142; }, a143: function() { return a143; }, a144: function() { return a144; }, a145: function() { return a145; }, a146: function() { return a146; }, a147: function() { return a147; }, a148: function() { return a148; }, a149: function() { return a149; }, a150: function() { return a150; }, a151: function() { return a151; }, a152: function() { return a152; }, a153: function() { return a153; }, a154: function() { return a154; }, a155: function() { return a155; }, a156: function() { return a156; }, a157: function() { return a157; }, a158: function() { return a158; }, a159: function() { return a159; }, a160: function() { return a160; }, a161: function() { return a161; }, a162: function() { return a162; }, a163: function() { return a163; }, a164: function() { return a164; }, a165: function() { return a165; }, a166: function() { return a166; }, a167: function() { return a167; }, a168: function() { return a168; }, a169: function() { return a169; }, a170: function() { return a170; }, a171: function() { return a171; }, a172: function() { return a172; }, a173: function() { return a173; }, a174: function() { return a174; }, a175: function() { return a175; }, a176: function() { return a176; }, a177: function() { return a177; }, a178: function() { return a178; }, a179: function() { return a179; }, a180: function() { return a180; }, a181: function() { return a181; }, a182: function() { return a182; }, a183: function() { return a183; }, a184: function() { return a184; }, a185: function() { return a185; }, a186: function() { return a186; }, a187: function() { return a187; }, a188: function() { return a188; }, a189: function() { return a189; }, a190: function() { return a190; }, a191: function() { return a191; }, a192: function() { return a192; }, a193: function() { return a193; }, a194: function() { return a194; }, a195: function() { return a195; }, a196: function() { return a196; }, a197: function() { return a197; }, a198: function() { return a198; }, a199: function() { return a199; }, a200: function() { return a200; }, a201: function() { return a201; }, a202: function() { return a202; }, a203: function() { return a203; }, a204: function() { return a204; }, a205: function() { return a205; }, a206: function() { return a206; }, a207: function() { return a207; }, a208: function() { return a208; }, a209: function() { return a209; }, a210: function() { return a210; }, a211: function() { return a211; }, a212: function() { return a212; }, a213: function() { return a213; }, a214: function() { return a214; }, a215: function() { return a215; }, a216: function() { return a216; }, a217: function() { return a217; }, a218: function() { return a218; }, a219: function() { return a219; }, a220: function() { return a220; }, a221: function() { return a221; }, a222: function() { return a222; }, a223: function() { return a223; }, a224: function() { return a224; }, a225: function() { return a225; }, a226: function() { return a226; }, a227: function() { return a227; }, a228: function() { return a228; }, a229: function() { return a229; }, a230: function() { return a230; }, a231: function() { return a231; }, a232: function() { return a232; }, a233: function() { return a233; }, a234: function() { return a234; }, a235: function() { return a235; }, a236: function() { return a236; }, a237: function() { return a237; }, a238: function() { return a238; }, a239: function() { return a239; }, a240: function() { return a240; }, a241: function() { return a241; }, a242: function() { return a242; }, a243: function() { return a243; }, a244: function() { return a244; }, a245: function() { return a245; }, a246: function() { return a246; }, a247: function() { return a247; }, a248: function() { return a248; }, a249: function() { return a249; } }); const a000 = 0; const a001 = 1; const a002 = 2; const a003 = 3; const a004 = 4; const a005 = 5; const a006 = 6; const a007 = 7; const a008 = 8; const a009 = 9; const a010 = 10; const a011 = 11; const a012 = 12; const a013 = 13; const a014 = 14; const a015 = 15; const a016 = 16; const a017 = 17; const a018 = 18; const a019 = 19; const a020 = 20; const a021 = 21; const a022 = 22; const a023 = 23; const a024 = 24; const a025 = 25; const a026 = 26; const a027 = 27; const a028 = 28; const a029 = 29; const a030 = 30; const a031 = 31; const a032 = 32; const a033 = 33; const a034 = 34; const a035 = 35; const a036 = 36; const a037 = 37; const a038 = 38; const a039 = 39; const a040 = 40; const a041 = 41; const a042 = 42; const a043 = 43; const a044 = 44; const a045 = 45; const a046 = 46; const a047 = 47; const a048 = 48; const a049 = 49; const a050 = 50; const a051 = 51; const a052 = 52; const a053 = 53; const a054 = 54; const a055 = 55; const a056 = 56; const a057 = 57; const a058 = 58; const a059 = 59; const a060 = 60; const a061 = 61; const a062 = 62; const a063 = 63; const a064 = 64; const a065 = 65; const a066 = 66; const a067 = 67; const a068 = 68; const a069 = 69; const a070 = 70; const a071 = 71; const a072 = 72; const a073 = 73; const a074 = 74; const a075 = 75; const a076 = 76; const a077 = 77; const a078 = 78; const a079 = 79; const a080 = 80; const a081 = 81; const a082 = 82; const a083 = 83; const a084 = 84; const a085 = 85; const a086 = 86; const a087 = 87; const a088 = 88; const a089 = 89; const a090 = 90; const a091 = 91; const a092 = 92; const a093 = 93; const a094 = 94; const a095 = 95; const a096 = 96; const a097 = 97; const a098 = 98; const a099 = 99; const a100 = 100; const a101 = 101; const a102 = 102; const a103 = 103; const a104 = 104; const a105 = 105; const a106 = 106; const a107 = 107; const a108 = 108; const a109 = 109; const a110 = 110; const a111 = 111; const a112 = 112; const a113 = 113; const a114 = 114; const a115 = 115; const a116 = 116; const a117 = 117; const a118 = 118; const a119 = 119; const a120 = 120; const a121 = 121; const a122 = 122; const a123 = 123; const a124 = 124; const a125 = 125; const a126 = 126; const a127 = 127; const a128 = 128; const a129 = 129; const a130 = 130; const a131 = 131; const a132 = 132; const a133 = 133; const a134 = 134; const a135 = 135; const a136 = 136; const a137 = 137; const a138 = 138; const a139 = 139; const a140 = 140; const a141 = 141; const a142 = 142; const a143 = 143; const a144 = 144; const a145 = 145; const a146 = 146; const a147 = 147; const a148 = 148; const a149 = 149; const a150 = 150; const a151 = 151; const a152 = 152; const a153 = 153; const a154 = 154; const a155 = 155; const a156 = 156; const a157 = 157; const a158 = 158; const a159 = 159; const a160 = 160; const a161 = 161; const a162 = 162; const a163 = 163; const a164 = 164; const a165 = 165; const a166 = 166; const a167 = 167; const a168 = 168; const a169 = 169; const a170 = 170; const a171 = 171; const a172 = 172; const a173 = 173; const a174 = 174; const a175 = 175; const a176 = 176; const a177 = 177; const a178 = 178; const a179 = 179; const a180 = 180; const a181 = 181; const a182 = 182; const a183 = 183; const a184 = 184; const a185 = 185; const a186 = 186; const a187 = 187; const a188 = 188; const a189 = 189; const a190 = 190; const a191 = 191; const a192 = 192; const a193 = 193; const a194 = 194; const a195 = 195; const a196 = 196; const a197 = 197; const a198 = 198; const a199 = 199; const a200 = 200; const a201 = 201; const a202 = 202; const a203 = 203; const a204 = 204; const a205 = 205; const a206 = 206; const a207 = 207; const a208 = 208; const a209 = 209; const a210 = 210; const a211 = 211; const a212 = 212; const a213 = 213; const a214 = 214; const a215 = 215; const a216 = 216; const a217 = 217; const a218 = 218; const a219 = 219; const a220 = 220; const a221 = 221; const a222 = 222; const a223 = 223; const a224 = 224; const a225 = 225; const a226 = 226; const a227 = 227; const a228 = 228; const a229 = 229; const a230 = 230; const a231 = 231; const a232 = 232; const a233 = 233; const a234 = 234; const a235 = 235; const a236 = 236; const a237 = 237; const a238 = 238; const a239 = 239; const a240 = 240; const a241 = 241; const a242 = 242; const a243 = 243; const a244 = 244; const a245 = 245; const a246 = 246; const a247 = 247; const a248 = 248; const a249 = 249;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/many-exports-chunked/1/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { a000: function() { return a000; }, a001: function() { return a001; }, a002: function() { return a002; }, a003: function() { return a003; }, a004: function() { return a004; }, a005: function() { return a005; }, a006: function() { return a006; }, a007: function() { return a007; }, a008: function() { return a008; }, a009: function() { return a009; }, a010: function() { return a010; }, a011: function() { return a011; }, a012: function() { return a012; }, a013: function() { return a013; }, a014: function() { return a014; }, a015: function() { return a015; }, a016: function() { return a016; }, a017: function() { return a017; }, a018: function() { return a018; }, a019: function() { return a019; }, a020: function() { return a020; }, a021: function() { return a021; }, a022: function() { return a022; }, a023: function() { return a023; }, a024: function() { return a024; }, a025: function() { return a025; }, a026: function() { return a026; }, a027: function() { return a027; }, a028: function() { return a028; }, a029: function() { return a029; }, a030: function() { return a030; }, a031: function() { return a031; }, a032: function() { return a032; }, a033: function() { return a033; }, a034: function() { return a034; }, a035: function() { return a035; }, a036: function() { return a036; }, a037: function() { return a037; }, a038: function() { return a038; }, a039: function() { return a039; }, a040: function() { return a040; }, a041: function() { return a041; }, a042: function() { return a042; }, a043: function() { return a043; }, a044: function() { return a044; }, a045: function() { return a045; }, a046: function() { return a046; }, a047: function() { return a047; }, a048: function() { return a048; }, a049: function() { return a049; }, a050: function() { return a050; }, a051: function() { return a051; }, a052: function() { return a052; }, a053: function() { return a053; }, a054: function() { return a054; }, a055: function() { return a055; }, a056: function() { return a056; }, a057: function() { return a057; }, a058: function() { return a058; }, a059: function() { return a059; }, a060: function() { return a060; }, a061: function() { return a061; }, a062: function() { return a062; }, a063: function() { return a063; }, a064: function() { return a064; }, a065: function() { return a065; }, a066: function() { return a066; }, a067: function() { return a067; }, a068: function() { return a068; }, a069: function() { return a069; }, a070: function() { return a070; }, a071: function() { return a071; }, a072: function() { return a072; }, a073: function() { return a073; }, a074: function() { return a074; }, a075: function() { return a075; }, a076: function() { return a076; }, a077: function() { return a077; }, a078: function() { return a078; }, a079: function() { return a079; }, a080: function() { return a080; }, a081: function() { return a081; }, a082: function() { return a082; }, a083: function() { return a083; }, a084: function() { return a084; }, a085: function() { return a085; }, a086: function() { return a086; }, a087: function() { return a087; }, a088: function() { return a088; }, a089: function() { return a089; }, a090: function() { return a090; }, a091: function() { return a091; }, a092: function() { return a092; }, a093: function() { return a093; }, a094: function() { return a094; }, a095: function() { return a095; }, a096: function() { return a096; }, a097: function() { return a097; }, a098: function() { return a098; }, a099: function() { return a099; }, a100: function() { return a100; }, a101: function() { return a101; }, a102: function() { return a102; }, a103: function() { return a103; }, a104: function() { return a104; }, a105: function() { return a105; }, a106: function() { return a106; }, a107: function() { return a107; }, a108: function() { return a108; }, a109: function() { return a109; }, a110: function() { return a110; }, a111: function() { return a111; }, a112: function() { return a112; }, a113: function() { return a113; }, a114: function() { return a114; }, a115: function() { return a115; }, a116: function() { return a116; }, a117: function() { return a117; }, a118: function() { return a118; }, a119: function() { return a119; }, a120: function() { return a120; }, a121: function() { return a121; }, a122: function() { return a122; }, a123: function() { return a123; }, a124: function() { return a124; }, a125: function() { return a125; }, a126: function() { return a126; }, a127: function() { return a127; }, a128: function() { return a128; }, a129: function() { return a129; }, a130: function() { return a130; }, a131: function() { return a131; }, a132: function() { return a132; }, a133: function() { return a133; }, a134: function() { return a134; }, a135: function() { return a135; }, a136: function() { return a136; }, a137: function() { return a137; }, a138: function() { return a138; }, a139: function() { return a139; }, a140: function() { return a140; }, a141: function() { return a141; }, a142: function() { return a142; }, a143: function() { return a143; }, a144: function() { return a144; }, a145: function() { return a145; }, a146: function() { return a146; }, a147: function() { return a147; }, a148: function() { return a148; }, a149: function() { return a149; }, a150: function() { return a150; }, a151: function() { return a151; }, a152: function() { return a152; }, a153: function() { return a153; }, a154: function() { return a154; }, a155: function() { return a155; }, a156: function() { return a156; }, a157: function() { return a157; }, a158: function() { return a158; }, a159: function() { return a159; }, a160: function() { return a160; }, a161: function() { return a161; }, a162: function() { return a162; }, a163: function() { return a163; }, a164: function() { return a164; }, a165: function() { return a165; }, a166: function() { return a166; }, a167: function() { return a167; }, a168: function() { return a168; }, a169: function() { return a169; }, a170: function() { return a170; }, a171: function() { return a171; }, a172: function() { return a172; }, a173: function() { return a173; }, a174: function() { return a174; }, a175: function() { return a175; }, a176: function() { return a176; }, a177: function() { return a177; }, a178: function() { return a178; }, a179: function() { return a179; }, a180: function() { return a180; }, a181: function() { return a181; }, a182: function() { return a182; }, a183: function() { return a183; }, a184: function() { return a184; }, a185: function() { return a185; }, a186: function() { return a186; }, a187: function() { return a187; }, a188: function() { return a188; }, a189: function() { return a189; }, a190: function() { return a190; }, a191: function() { return a191; }, a192: function() { return a192; }, a193: function() { return a193; }, a194: function() { return a194; }, a195: function() { return a195; }, a196: function() { return a196; }, a197: function() { return a197; }, a198: function() { return a198; }, a199: function() { return a199; }, a200: function() { return a200; }, a201: function() { return a201; }, a202: function() { return a202; }, a203: function() { return a203; }, a204: function() { return a204; }, a205: function() { return a205; }, a206: function() { return a206; }, a207: function() { return a207; }, a208: function() { return a208; }, a209: function() { return a209; }, a210: function() { return a210; }, a211: function() { return a211; }, a212: function() { return a212; }, a213: function() { return a213; }, a214: function() { return a214; }, a215: function() { return a215; }, a216: function() { return a216; }, a217: function() { return a217; }, a218: function() { return a218; }, a219: function() { return a219; }, a220: function() { return a220; }, a221: function() { return a221; }, a222: function() { return a222; }, a223: function() { return a223; }, a224: function() { return a224; }, a225: function() { return a225; }, a226: function() { return a226; }, a227: function() { return a227; }, a228: function() { return a228; }, a229: function() { return a229; }, a230: function() { return a230; }, a231: function() { return a231; }, a232: function() { return a232; }, a233: function() { return a233; }, a234: function() { return a234; }, a235: function() { return a235; }, a236: function() { return a236; }, a237: function() { return a237; }, a238: function() { return a238; }, a239: function() { return a239; }, a240: function() { return a240; }, a241: function() { return a241; }, a242: function() { return a242; }, a243: function() { return a243; }, a244: function() { return a244; }, a245: function() { return a245; }, a246: function() { return a246; }, a247: function() { return a247; }, a248: function() { return a248; }, a249: function() { return a249; } }); const a000 = 0; const a001 = 1; const a002 = 2; const a003 = 3; const a004 = 4; const a005 = 5; const a006 = 6; const a007 = 7; const a008 = 8; const a009 = 9; const a010 = 10; const a011 = 11; const a012 = 12; const a013 = 13; const a014 = 14; const a015 = 15; const a016 = 16; const a017 = 17; const a018 = 18; const a019 = 19; const a020 = 20; const a021 = 21; const a022 = 22; const a023 = 23; const a024 = 24; const a025 = 25; const a026 = 26; const a027 = 27; const a028 = 28; const a029 = 29; const a030 = 30; const a031 = 31; const a032 = 32; const a033 = 33; const a034 = 34; const a035 = 35; const a036 = 36; const a037 = 37; const a038 = 38; const a039 = 39; const a040 = 40; const a041 = 41; const a042 = 42; const a043 = 43; const a044 = 44; const a045 = 45; const a046 = 46; const a047 = 47; const a048 = 48; const a049 = 49; const a050 = 50; const a051 = 51; const a052 = 52; const a053 = 53; const a054 = 54; const a055 = 55; const a056 = 56; const a057 = 57; const a058 = 58; const a059 = 59; const a060 = 60; const a061 = 61; const a062 = 62; const a063 = 63; const a064 = 64; const a065 = 65; const a066 = 66; const a067 = 67; const a068 = 68; const a069 = 69; const a070 = 70; const a071 = 71; const a072 = 72; const a073 = 73; const a074 = 74; const a075 = 75; const a076 = 76; const a077 = 77; const a078 = 78; const a079 = 79; const a080 = 80; const a081 = 81; const a082 = 82; const a083 = 83; const a084 = 84; const a085 = 85; const a086 = 86; const a087 = 87; const a088 = 88; const a089 = 89; const a090 = 90; const a091 = 91; const a092 = 92; const a093 = 93; const a094 = 94; const a095 = 95; const a096 = 96; const a097 = 97; const a098 = 98; const a099 = 99; const a100 = 100; const a101 = 101; const a102 = 102; const a103 = 103; const a104 = 104; const a105 = 105; const a106 = 106; const a107 = 107; const a108 = 108; const a109 = 109; const a110 = 110; const a111 = 111; const a112 = 112; const a113 = 113; const a114 = 114; const a115 = 115; const a116 = 116; const a117 = 117; const a118 = 118; const a119 = 119; const a120 = 120; const a121 = 121; const a122 = 122; const a123 = 123; const a124 = 124; const a125 = 125; const a126 = 126; const a127 = 127; const a128 = 128; const a129 = 129; const a130 = 130; const a131 = 131; const a132 = 132; const a133 = 133; const a134 = 134; const a135 = 135; const a136 = 136; const a137 = 137; const a138 = 138; const a139 = 139; const a140 = 140; const a141 = 141; const a142 = 142; const a143 = 143; const a144 = 144; const a145 = 145; const a146 = 146; const a147 = 147; const a148 = 148; const a149 = 149; const a150 = 150; const a151 = 151; const a152 = 152; const a153 = 153; const a154 = 154; const a155 = 155; const a156 = 156; const a157 = 157; const a158 = 158; const a159 = 159; const a160 = 160; const a161 = 161; const a162 = 162; const a163 = 163; const a164 = 164; const a165 = 165; const a166 = 166; const a167 = 167; const a168 = 168; const a169 = 169; const a170 = 170; const a171 = 171; const a172 = 172; const a173 = 173; const a174 = 174; const a175 = 175; const a176 = 176; const a177 = 177; const a178 = 178; const a179 = 179; const a180 = 180; const a181 = 181; const a182 = 182; const a183 = 183; const a184 = 184; const a185 = 185; const a186 = 186; const a187 = 187; const a188 = 188; const a189 = 189; const a190 = 190; const a191 = 191; const a192 = 192; const a193 = 193; const a194 = 194; const a195 = 195; const a196 = 196; const a197 = 197; const a198 = 198; const a199 = 199; const a200 = 200; const a201 = 201; const a202 = 202; const a203 = 203; const a204 = 204; const a205 = 205; const a206 = 206; const a207 = 207; const a208 = 208; const a209 = 209; const a210 = 210; const a211 = 211; const a212 = 212; const a213 = 213; const a214 = 214; const a215 = 215; const a216 = 216; const a217 = 217; const a218 = 218; const a219 = 219; const a220 = 220; const a221 = 221; const a222 = 222; const a223 = 223; const a224 = 224; const a225 = 225; const a226 = 226; const a227 = 227; const a228 = 228; const a229 = 229; const a230 = 230; const a231 = 231; const a232 = 232; const a233 = 233; const a234 = 234; const a235 = 235; const a236 = 236; const a237 = 237; const a238 = 238; const a239 = 239; const a240 = 240; const a241 = 241; const a242 = 242; const a243 = 243; const a244 = 244; const a245 = 245; const a246 = 246; const a247 = 247; const a248 = 248; const a249 = 249; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/class-static-block/input.js
JavaScript
class foo { static { this; // should not be replaced by undefined } }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/class-static-block/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; class foo { static{ this; // should not be replaced by undefined } } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/class-static-block/output.cjs
JavaScript
"use strict"; class foo { static{ this; // should not be replaced by undefined } }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/class-static-block/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; class foo { static{ this; // should not be replaced by undefined } } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/copy-getters-setters/input.js
JavaScript
import Foo, { baz } from "./moduleWithGetter"; export { baz, Foo };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/copy-getters-setters/output.amd.js
JavaScript
define([ "require", "exports", "./moduleWithGetter" ], function(require, exports, _moduleWithGetter) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { Foo: function() { return _moduleWithGetter.default; }, baz: function() { return _moduleWithGetter.baz; } }); _moduleWithGetter = /*#__PURE__*/ _interop_require_wildcard(_moduleWithGetter); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/copy-getters-setters/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { Foo: function() { return _moduleWithGetter.default; }, baz: function() { return _moduleWithGetter.baz; } }); const _moduleWithGetter = /*#__PURE__*/ _interop_require_wildcard(require("./moduleWithGetter"));
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/copy-getters-setters/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("./moduleWithGetter")); else if (typeof define === "function" && define.amd) define([ "exports", "./moduleWithGetter" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.moduleWithGetter); })(this, function(exports, _moduleWithGetter) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { Foo: function() { return _moduleWithGetter.default; }, baz: function() { return _moduleWithGetter.baz; } }); _moduleWithGetter = /*#__PURE__*/ _interop_require_wildcard(_moduleWithGetter); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/import-const-throw/input.js
JavaScript
import Foo from "foo"; import * as Bar from "bar"; import { Baz } from "baz"; Foo = 42; Bar = 43; Baz = 44; ({ Foo } = {}); ({ Bar } = {}); ({ Baz } = {}); ({ prop: Foo } = {}); ({ prop: Bar } = {}); ({ prop: Baz } = {});
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/import-const-throw/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Foo = 42; Bar = 43; Baz = 44; ({ Foo } = {}); ({ Bar } = {}); ({ Baz } = {}); ({ prop: Foo } = {}); ({ prop: Bar } = {}); ({ prop: Baz } = {}); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/import-const-throw/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Foo = 42; Bar = 43; Baz = 44; ({ Foo } = {}); ({ Bar } = {}); ({ Baz } = {}); ({ prop: Foo } = {}); ({ prop: Bar } = {}); ({ prop: Baz } = {});
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/import-const-throw/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Foo = 42; Bar = 43; Baz = 44; ({ Foo } = {}); ({ Bar } = {}); ({ Baz } = {}); ({ prop: Foo } = {}); ({ prop: Bar } = {}); ({ prop: Baz } = {}); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-arrow-function/input.js
JavaScript
var foo = () => this;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-arrow-function/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; var foo = ()=>void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-arrow-function/output.cjs
JavaScript
"use strict"; var foo = ()=>void 0;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-arrow-function/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; var foo = ()=>void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-1/input.js
JavaScript
export class C { [this.name]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-1/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-1/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-1/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-2/input.js
JavaScript
class A { [() => this.name]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-2/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; class A { [()=>(void 0).name]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-2/output.cjs
JavaScript
"use strict"; class A { [()=>(void 0).name]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-2/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; class A { [()=>(void 0).name]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-3/input.js
JavaScript
class A { [function () { this.name; }]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-3/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; class A { [function() { this.name; }]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-3/output.cjs
JavaScript
"use strict"; class A { [function() { this.name; }]() {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-method-3/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; class A { [function() { this.name; }]() {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-property-name/input.js
JavaScript
export class C { [this.name] = 42 }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-property-name/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name] = 42; } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-property-name/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name] = 42; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-computed-class-property-name/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "C", { enumerable: true, get: function() { return C; } }); class C { [(void 0).name] = 42; } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-call/input.js
JavaScript
this.foo();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-call/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; (void 0).foo(); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-call/output.cjs
JavaScript
"use strict"; (void 0).foo();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-call/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; (void 0).foo(); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-declaration/input.js
JavaScript
var self = this;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-declaration/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; var self = void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-declaration/output.cjs
JavaScript
"use strict"; var self = void 0;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-declaration/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; var self1 = void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-reference/input.js
JavaScript
this;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-reference/output.amd.js
JavaScript
define([ "require" ], function(require) { "use strict"; void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-reference/output.cjs
JavaScript
"use strict"; void 0;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/misc/undefined-this-root-reference/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(); else if (typeof define === "function" && define.amd) define([], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(); })(this, function() { "use strict"; void 0; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/pull-4688/input.js
JavaScript
export var format; export default function defaultLocale(definition) { locale = formatLocale(definition); format = locale.format; return locale; } format = "123";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/pull-4688/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { default: function() { return defaultLocale; }, format: function() { return format; } }); var format; function defaultLocale(definition) { locale = formatLocale(definition); format = locale.format; return locale; } format = "123"; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/pull-4688/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { default: function() { return defaultLocale; }, format: function() { return format; } }); var format; function defaultLocale(definition) { locale = formatLocale(definition); format = locale.format; return locale; } format = "123";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/pull-4688/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { default: function() { return defaultLocale; }, format: function() { return format; } }); var format; function defaultLocale(definition) { locale = formatLocale(definition); format = locale.format; return locale; } format = "123"; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/4209/input.js
JavaScript
import { copy } from "./copyPaste"; class Thing { handleCopySomething() { copy(); } completelyUnrelated(copy = 123) { } }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/4209/output.amd.js
JavaScript
define([ "require", "exports", "./copyPaste" ], function(require, exports, _copyPaste) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Thing { handleCopySomething() { (0, _copyPaste.copy)(); } completelyUnrelated(copy = 123) {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/4209/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const _copyPaste = require("./copyPaste"); class Thing { handleCopySomething() { (0, _copyPaste.copy)(); } completelyUnrelated(copy = 123) {} }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/4209/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("./copyPaste")); else if (typeof define === "function" && define.amd) define([ "exports", "./copyPaste" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.copyPaste); })(this, function(exports, _copyPaste) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Thing { handleCopySomething() { (0, _copyPaste.copy)(); } completelyUnrelated(copy = 123) {} } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6647/input.js
JavaScript
import a from "a"; a.preview(...c);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6647/output.amd.js
JavaScript
define([ "require", "exports", "a" ], function(require, exports, _a) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); _a = /*#__PURE__*/ _interop_require_default(_a); _a.default.preview(...c); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6647/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const _a = /*#__PURE__*/ _interop_require_default(require("a")); _a.default.preview(...c);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6647/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("a")); else if (typeof define === "function" && define.amd) define([ "exports", "a" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.a); })(this, function(exports, _a) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); _a = /*#__PURE__*/ _interop_require_default(_a); _a.default.preview(...c); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6733/input.js
JavaScript
export default function* () { var x = yield 5; return 5; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6733/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); function* _default() { var x = yield 5; return 5; } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6733/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); function* _default() { var x = yield 5; return 5; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/6733/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); function* _default() { var x = yield 5; return 5; } });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/t-7178/input.js
JavaScript
import props from "props"; console.log(props); (function () { const { ...props } = this.props; console.log(props); })();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/t-7178/output.amd.js
JavaScript
define([ "require", "exports", "props" ], function(require, exports, _props) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); _props = /*#__PURE__*/ _interop_require_default(_props); console.log(_props.default); (function() { const { ...props } = this.props; console.log(props); })(); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/t-7178/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const _props = /*#__PURE__*/ _interop_require_default(require("props")); console.log(_props.default); (function() { const { ...props } = this.props; console.log(props); })();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/regression/t-7178/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports, require("props")); else if (typeof define === "function" && define.amd) define([ "exports", "props" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}, global.props); })(this, function(exports, _props) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); _props = /*#__PURE__*/ _interop_require_default(_props); console.log(_props.default); (function() { const { ...props } = this.props; console.log(props); })(); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-1/input.js
JavaScript
export default foo;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-1/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); const _default = foo; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-1/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); const _default = foo;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-1/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return _default; } }); const _default = foo; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-2/input.js
JavaScript
var foo; export { foo as default };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-2/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return foo; } }); var foo; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-2/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return foo; } }); var foo;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-2/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return foo; } }); var foo; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-3/input.js
JavaScript
export {}; export {} from "foo";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-3/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-3/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-3/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-4/input.js
JavaScript
export function foo() {}
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-4/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "foo", { enumerable: true, get: function() { return foo; } }); function foo() {} });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-4/output.cjs
JavaScript
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "foo", { enumerable: true, get: function() { return foo; } }); function foo() {}
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-4/output.umd.js
JavaScript
(function(global, factory) { if (typeof module === "object" && typeof module.exports === "object") factory(exports); else if (typeof define === "function" && define.amd) define([ "exports" ], factory); else if (global = typeof globalThis !== "undefined" ? globalThis : global || self) factory(global.input = {}); })(this, function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "foo", { enumerable: true, get: function() { return foo; } }); function foo() {} });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-const/destructuring-array-default-params/input.js
JavaScript
export const [foo, bar = 2] = [];
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_ecma_transforms_module/tests/fixture/common/strict/export-const/destructuring-array-default-params/output.amd.js
JavaScript
define([ "require", "exports" ], function(require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { bar: function() { return bar; }, foo: function() { return foo; } }); const [foo, bar = 2] = []; });
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University