repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/async.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/async.js
import {UI_EVENT_TYPE} from "./switcher"; export default UI_EVENT_TYPE;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/switcher/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/switcher/index.js
import { UI_EVENT_TYPE } from "../types"; export { UI_EVENT_TYPE };
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/types/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary/types/index.js
export var UI_EVENT_TYPE = "ui"; export var TRACK_EVENT_TYPE = "track"; export var SCREEN_EVENT_TYPE = "screen"; export var OPERATIONAL_EVENT_TYPE = "operational"; export var DEFAULT_SOURCE = "unknown";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-class-rename/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-class-rename/b.js
export default class Test { constructor() { this.foo = 'bar'; } static create() { return new Test(); } }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-class-rename/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-class-rename/a.js
import Test from './b'; output = Test.create();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-live/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-live/b.js
export default class foo {} foo = 5; export function change(v) { foo = v; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-live/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-live/a.js
import foo, {change} from "./b.js"; output(foo); change(10); output(foo);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/b.js
export {foo} from './c';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/c.js
export var bar = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-missing/a.js
import {foo} from './b'; output = foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/index.js
import {bar} from 'lib'; output = `foo ${bar}`;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/index.js
export * from './other'; export * from './empty';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/empty.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/empty.js
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/bar.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/bar.js
export default 'bar';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/other.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-empty-no-side-effects/node_modules/lib/other.js
export {default as bar} from './bar';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace/b.js
export var foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace/a.js
import * as test from './b'; let x = test; output = x.foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/a.js
import {baz} from './library/index.js'; output = baz;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/library/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/library/index.js
export * from './empty.js'; export var baz = 123;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/library/empty.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-all-empty/library/empty.js
// empty: thank you, Typescript!
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/index.1.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/index.1.js
import {b} from "./library/a.js"; output = [b];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/index.2.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/index.2.js
import {b, c} from "./library/a.js"; output = [b, c];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/b.js
export const b = 123;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/c.js
export const c = 789;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-symbols/library/a.js
export {b} from "./b.js"; export {c} from "./c.js";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/other.1.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/other.1.js
PROCESS_ME
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/index.js
import { a } from "./other.js"; output = a;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/other.2.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/other.2.js
export const a = 1;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/node_modules/parcel-transformer-test/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-inline/node_modules/parcel-transformer-test/index.js
// @flow const {Transformer} = require('@parcel/plugin'); module.exports = new Transformer({ async transform({asset}) { let code = await asset.getCode(); if (code.includes('PROCESS_ME')) { asset.setCode(`export {a} from "xyz";`); return [ asset, { type: 'js', ...
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/index.js
import { mergeWith } from "./lib"; output = mergeWith;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/empty.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/empty.js
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/mergeWith.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/mergeWith.js
module.exports = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/other.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/other.js
export { default as mergeWith } from "./mergeWith";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/lib.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-1/lib.js
export * from "./other"; export * from "./empty";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/double-esmodule/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/double-esmodule/index.js
import * as foo from './foo'; output = foo['def' + (Date.now() > 0 ? 'ault' : '')];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/double-esmodule/foo.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/double-esmodule/foo.js
export const __esModule = true; export default 'default';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-export/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-export/b.js
var bar = 2; export {bar as foo};
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-export/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-export/a.js
import {foo} from './b'; output = foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/named.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/named.js
import {foo} from './b'; foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/namespace.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/namespace.js
import * as b from './b'; b = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/default.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/default.js
import b from './b'; b = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/b.js
export let foo = 2; export default 4;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/multiple.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/multiple.js
import {foo} from './b'; foo = 2; foo = 4;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/destructure-assign.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-local-assign/destructure-assign.js
import {foo} from './b'; ({bar: foo} = {bar: 3})
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-wrapped-self/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-wrapped-self/b.js
import * as ns from "./b.js"; export function f() { return foo(ns).f === f; } function foo(x) { return x; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-wrapped-self/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-wrapped-self/a.js
if (Date.now() > 0) { const { f } = require("./b.js"); output = f(); }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/b.js
export * from "./c.js"; export * from "./d.js";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/d.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/d.js
export function run() { if (!module) return false; else return true; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/c.js
import { run } from "./d.js"; var logger = run() ? "a" : "b"; export { logger };
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped/a.js
import { logger, run } from "./b.js"; output = [logger, run()];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/a.js
import { message1 } from "./library/index.js"; output = message1;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/esm1.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/esm1.js
sideEffect("esm1"); export const message1 = "Message 1";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/esm2.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/esm2.js
import { data } from "./other.js"; sideEffect("esm2"); export const message2 = data + " via esm2";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/index.js
sideEffect("index"); export * from "./esm1.js"; export * from "./esm2.js";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/other.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-semi-weak/library/other.js
sideEffect("other"); export const data = "Message 2";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/b.js
import * as b from "./library/index.js"; let val = "foo"; output = b[val];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/a.js
import * as test from './library/index.js'; output = test.foo + test['foobar'];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c2.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c2.js
sideEffect("c2"); export const bar = "bar";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/index.js
export * from "./c1.js"; export * from "./c2.js"; export * from "./c3.js";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c3.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c3.js
sideEffect("c3"); export const foobar = "foobar";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c1.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-static-member/library/c1.js
sideEffect("c1"); export const foo = "foo";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/class-selfreference/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/class-selfreference/a.js
class Bar { constructor() { this.foo = 'bar'; } duplicate() { return new Bar(); } } output = new Bar().duplicate();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/b.js
export {default as foo} from './c'
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/c.js
Object.defineProperty(exports, '__esModule', { value: true }) Object.defineProperty(exports, 'default', { value: () => 'foo' })
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-commonjs/a.js
import {foo} from './b' output = foo()
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/b.js
import lib from 'lib'; export default lib; export * from 'lib';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/a.js
import * as x from 'lib'; output = import('./b').then(p => [x, p.default + p.foo + 456]);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/node_modules/lib/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/node_modules/lib/index.js
export default 123; export * from './other';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/node_modules/lib/other.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-split2/node_modules/lib/other.js
export const foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/b.js
import {bar} from "./library/index.js"; output = bar;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/a.js
import bar from "./library/index.js"; output = bar;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/library/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/library/index.js
sideEffect("index"); export { bar as default, bar } from './other';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/library/other.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-same2/library/other.js
sideEffect("other"); export const bar = "bar";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-export/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-export/b.js
var foo = 2; export default foo; export {foo, foo as bar};
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-export/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-export/a.js
import b, {foo, bar} from './b'; output = b + foo + bar;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/index.js
import { foo } from "./foo/index.js"; output = foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/x.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/x.js
export class x {}
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/w/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/w/index.js
export { w } from "./w.js"; sideEffect("unused!");
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/w/w.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/w/w.js
import { x } from "../x.js"; export class w extends x {}
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/index.js
import { a } from "./a.js"; import { b } from "./b.js"; import { c } from "./c.js"; import { w } from "../w/index.js"; export const foo = [a, b, c, w];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/b.js
export const b = "b";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/c.js
import { x } from "../x.js"; export const c = x;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-order/foo/a.js
export const a = "a";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/b.js
export * from './c'; export * from './d'; export var baz = 1;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/d.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/d.js
export var a = 4, b = 5;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/c.js
export var foo = 2, bar = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-multiple/a.js
import {foo, bar, baz, a, b} from './b'; output = foo + bar + baz + a + b;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/index.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/index.js
if (Date.now() > 0) { output = require("./a.js").default; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/b.js
import { foo as old } from "./c"; export * from "./c"; function foo() { return "fooB" + old(); } export { foo };
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/c.js
export function foo() { return "fooC"; } export const c = "C";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-override/a.js
import { foo, c } from "./b.js"; export default foo() + c;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-interop/translations.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-interop/translations.js
export {default as en_US} from './en.json';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-interop/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-interop/a.js
import * as translations from './translations'; output = translations;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/b.js
export {foo} from './c'; export var baz = 1;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/c.js
export var foo = 2, bar = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-named/a.js
import {foo, baz} from './b'; output = foo + baz;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/b.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/b.js
export class B { static [Symbol.toStringTag] = 1; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/c.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/c.js
export class C { static [Symbol.toStringTag] = 2; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/a.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-helpers/a.js
import {B} from './b.js'; import {C} from './c.js'; output = [B[Symbol.toStringTag], C[Symbol.toStringTag]];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/reexports.js
packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/reexports.js
import * as ns from './ns'; export {ns}; export * as ns2 from './ns';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false