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_node_bundler/tests/pass/issue-1756/input/app/scripts/lib/util.js
JavaScript
import "../../../shared/constants/app";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/entry.js
JavaScript
import "./ui/store/actions.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/ducks/alerts/unconnected-account.js
JavaScript
import "../../store/actions.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/helpers/utils/confirm-tx.util.js
JavaScript
import '../../store/actions.js';
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/helpers/utils/token-util.js
JavaScript
import './confirm-tx.util.js';
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/pages/send/send.constants.js
JavaScript
import "../../../app/scripts/lib/util.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/pages/send/send.utils.js
JavaScript
import "../../helpers/utils/token-util.js"; import "./send.constants.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-1756/input/ui/store/actions.js
JavaScript
// NOTE: Comment out any of these imports // NOTE: and the build will succeed! import "../pages/send/send.utils.js"; import "../../app/scripts/lib/util.js"; import "../ducks/alerts/unconnected-account.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-2124/named-export/input/entry.ts
TypeScript
import { memoize } from "./util"; // Import directly from `lodash` instead and the module code is // included in the bundle //import {memoize} from './lodash'; const name = memoize(); console.log(name);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-2124/named-export/input/lodash.ts
TypeScript
// This is a minimal reproduction from lodash@4.17.21 function lodash(value) { console.log("lodash"); } function memoize() { console.log("memoize"); } lodash.memoize = memoize; // Either of these lines cause this module // not to be included in the bundle. Member expression // on `module` or `exports`. modu...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-2124/named-export/input/util.ts
TypeScript
// This indirection is necessary to reproduce the issue export { memoize } from "./lodash";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/issue-2124/named-export/output/entry.js
JavaScript
function __swcpack_require__(mod) { function interop(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for(var key in obj){ if (Object.prototype.hasOwnProperty.call(obj, key)) { ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/basic/input/a.js
JavaScript
export const a = "a.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/basic/input/b.js
JavaScript
export const b = "b.js";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/basic/input/entry.js
JavaScript
import { a } from "./a"; import { b } from "./b"; export { a, b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/basic/output/entry.js
JavaScript
const a = "a.js"; const b = "b.js"; export { a as a, b as b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/side-effects/simple/input/a.js
JavaScript
export const a = 1; console.log("b");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/side-effects/simple/input/entry.js
JavaScript
import { a } from "./a"; console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/side-effects/simple/output/entry.js
JavaScript
const a = 1; console.log("b"); console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/simple/input/a.js
JavaScript
export const a = foo(); function foo() { return 1; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/simple/input/b.js
JavaScript
export const b = foo(); function foo() { return 2; }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/simple/input/entry.js
JavaScript
import { a } from "./a"; import { b } from "./b"; export { a, b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/name-conflict/simple/output/entry.js
JavaScript
const a = foo(); function foo() { return 1; } const b = foo1(); function foo1() { return 2; } export { a as a, b as b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/nested-import/input/a.js
JavaScript
console.log("a");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/nested-import/input/b.js
JavaScript
console.log("b");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/nested-import/input/entry.js
JavaScript
import "./a"; import "./b";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/merge/nested-import/output/entry.js
JavaScript
console.log("a"); console.log("b");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.dynamic-import/input/a.js
JavaScript
export default 5;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.dynamic-import/input/entry.js
JavaScript
import("./a").then((v) => console.log(v));
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.mixed/input/a.js
JavaScript
export default "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.mixed/input/b.js
JavaScript
export default "b";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.mixed/input/c.js
JavaScript
export default "c";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.mixed/input/entryA.js
JavaScript
import("./a").then((v) => console.log(v)); import("./b").then((v) => console.log(v));
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/.mixed/input/entryB.js
JavaScript
import("./a").then((v) => console.log(v)); import("./c").then((v) => console.log(v));
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/input/c.js
JavaScript
import { foo } from "./d"; console.log("loading c.js"); export function c() { foo(); }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/input/d.js
JavaScript
console.log("loading d.js"); export function foo() { console.log("d.js"); }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/input/entry-a.js
JavaScript
import { c } from "./c"; c();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/input/entry-b.js
JavaScript
import { foo } from "./d"; foo();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/output/d-2w4j5tksz1e1k.js
JavaScript
console.log('loading d.js'); function foo1() { console.log('d.js'); } export { foo1 as foo };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/output/entry-a.js
JavaScript
console.log("loading d.js"); function foo() { console.log("d.js"); } console.log("loading c.js"); function c() { foo(); } c();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/multi-entry/simple/output/entry-b.js
JavaScript
console.log("loading d.js"); function foo() { console.log("d.js"); } foo();
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/node-modules/builtin/.simple/input/entry.js
JavaScript
import { join } from "path";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/node-modules/library/simple/input/entry.js
JavaScript
import progress from "progress"; console.log(progress);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/node-modules/library/simple/output/entry.js
JavaScript
function __swcpack_require__(mod) { function interop(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for(var key in obj){ if (Object.prototype.hasOwnProperty.call(obj, key)) { ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-1/input/a.js
JavaScript
export const a = "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-1/input/entry.js
JavaScript
import * as a from "./a"; console.log(a); // { a: "a" }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-1/output/entry.js
JavaScript
const a = "a"; const mod = { a: a }; console.log(mod);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-10/input/entry.js
JavaScript
export { a, b } from "./k";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-10/input/i.ts
TypeScript
export function a(...d: string[]): string { return d.join(" "); }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-10/input/j.ts
TypeScript
export function a(...d: string[]): string { return d.join("/"); }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-10/input/k.ts
TypeScript
import * as _i from "./i"; import * as _j from "./j"; const k = globalThis.value ? _i : _j; export const i = _i; export const j = _j; export const { a } = k;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-10/output/entry.js
JavaScript
function a(...d) { return d.join(" "); } const mod = { a: a }; function a1(...d) { return d.join("/"); } const mod1 = { a: a1 }; const k = globalThis.value ? mod : mod1; const { a: a2 } = k; export { a2 as a, b as b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-2/input/b.js
JavaScript
export * as c from "./c"; export const b = "b";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-2/input/c.js
JavaScript
export const c = "c"; export default class C {}
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-2/input/entry.js
JavaScript
import * as b from "./b"; console.log(b.b); // "b" console.log(b.c); // { c: "c", default: class C }
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-2/output/entry.js
JavaScript
const c = "c"; class C { } const mod = { c: c, default: C }; const b = "b"; console.log(b); console.log(mod);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-3/input/a.js
JavaScript
export const a = "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-3/input/d.js
JavaScript
import { a } from "./a"; export const d = { a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-3/input/entry.js
JavaScript
import { d } from "./d"; console.log(d);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-3/output/entry.js
JavaScript
const a = "a"; const d = { a }; console.log(d);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-5/input/a.js
JavaScript
export const a = "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-5/input/e.js
JavaScript
export * from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-5/input/entry.js
JavaScript
import { a } from "./e"; console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-5/output/entry.js
JavaScript
const a = "a"; console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-7/input/entry.js
JavaScript
import { isMain, modUrl } from "./f"; console.log(isMain, modUrl); console.log(import.meta);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-7/input/f.js
JavaScript
export const isMain = import.meta.main; export const modUrl = import.meta.url;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-7/output/entry.js
JavaScript
const importMeta = { url: "$DIR/tests/pass/pr-1105/example-7/input/f.js", main: false }; const isMain = importMeta.main; const modUrl = importMeta.url; const importMeta1 = { url: "$DIR/tests/pass/pr-1105/example-7/input/entry.js", main: import.meta.main }; console.log(isMain, modUrl); console.log(import...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-js/input/a.js
JavaScript
export const a = "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-js/input/entry.js
JavaScript
export * as a from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-js/output/entry.js
JavaScript
var a = "a"; const mod = { a: a }; export { mod as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-ts/input/a.ts
TypeScript
export const a = "a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-ts/input/entry.js
JavaScript
export * as a from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/pr-1105/example-9-ts/output/entry.js
JavaScript
var a = "a"; const mod = { a: a }; export { mod as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/.namespace/input/a.js
JavaScript
export * as b from "./b"; console.log("a");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/.namespace/input/b.js
JavaScript
export const b = 1; console.log("b");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/.namespace/input/entry.js
JavaScript
export { b } from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/default-1-simple/input/a.js
JavaScript
export { default as a } from "./b"; console.log("a.js");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/default-1-simple/input/b.js
JavaScript
const b = 1; export default b; console.log("b");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/default-1-simple/input/entry.js
JavaScript
export { a } from "./a"; console.log("entry");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/default-1-simple/output/entry.js
JavaScript
const b = 1; console.log("b"); console.log("a.js"); export { b as a }; console.log("entry");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-1/input/a.js
JavaScript
import { b } from "./b"; export { b };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-1/input/b.js
JavaScript
export const b = 1;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-1/input/entry.js
JavaScript
import { b } from "./a"; console.log(b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-1/output/entry.js
JavaScript
const b = 1; console.log(b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-2/input/a.js
JavaScript
import { a } from "./b"; export { a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-2/input/b.js
JavaScript
const b = 1; export { b as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-2/input/entry.js
JavaScript
import { a } from "./a"; console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-2/output/entry.js
JavaScript
const b = 1; console.log(b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-3/input/a.js
JavaScript
import { a as b } from "./b"; export { b as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-3/input/b.js
JavaScript
const b = 1; export { b as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-3/input/entry.js
JavaScript
import { a } from "./a"; console.log(a);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/import-then-export-3/output/entry.js
JavaScript
const b = 1; console.log(b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-alias/input/a.js
JavaScript
export { b as a } from "./b"; console.log("a");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-alias/input/b.js
JavaScript
export const b = 1; console.log("b", b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-alias/input/entry.js
JavaScript
export { a } from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-alias/output/entry.js
JavaScript
const b = 1; console.log("b", b); console.log("a"); export { b as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-orig/input/a.js
JavaScript
export { b } from "./b"; console.log("a");
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-orig/input/b.js
JavaScript
export const b = 1; console.log("b", b);
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-orig/input/entry.js
JavaScript
export { b as a } from "./a";
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_node_bundler/tests/pass/reexport/named-1-orig/output/entry.js
JavaScript
const b = 1; console.log("b", b); console.log("a"); export { b as a };
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University