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/non-deterministic-bundle-hashes/library/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/non-deterministic-bundle-hashes/library/foo.js | import {bag} from '../utils';
function foo() {
return bag;
}
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/non-deterministic-bundle-hashes/utils/bag.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/non-deterministic-bundle-hashes/utils/bag.js | export function bag() {
return 'bag';
};
export function baz() {
return bag() + '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/non-deterministic-bundle-hashes/utils/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/non-deterministic-bundle-hashes/utils/index.js | export * from './bag';
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/non-deterministic-bundle-hashes/utils/empty.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/non-deterministic-bundle-hashes/utils/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-var/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-var/b.js | import {foo, bar} from './c'
export {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-var/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-var/c.js | const foo = () => 'foo'
function bar() {
return 'bar'
}
export {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-var/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-var/a.js | import {foo, bar} from './b'
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/multi-entry-duplicates/two.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-entry-duplicates/two.js | import { getValue, add } from './shared';
add(); | 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-entry-duplicates/one.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-entry-duplicates/one.js | import { getValue, add } from './shared';
add();
output = import('./two').then(() => getValue()); | 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-entry-duplicates/shared.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/multi-entry-duplicates/shared.js | let counter = 0;
export function getValue() {
return counter;
}
export function add() {
counter++;
}
| 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-named-empty/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-named-empty/a.js | output = 2;
export {};
| 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-update-deferred-reexported/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/index.js | import foo from "foo";
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-update-deferred-reexported/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/bar/index.js | export { default as a } from './a.js';
export { default as b } from './b.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-update-deferred-reexported/node_modules/bar/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/bar/b.js | export default 56789;
| 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-update-deferred-reexported/node_modules/bar/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/bar/a.js | export default 12345;
| 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-update-deferred-reexported/node_modules/foo/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/foo/index.js | import {a} from 'bar';
import other from './foo.js';
export default function() {
return `${a}${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-update-deferred-reexported/node_modules/foo/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/foo/foo.js | export default function(){
return "hello";
}
| 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-update-deferred-reexported/node_modules/foo/foo_updated.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-update-deferred-reexported/node_modules/foo/foo_updated.js | import {b} from 'bar';
export default function(){
return 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/import-commonjs-export-individual-default/b2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual-default/b2.js | exports.__esModule = true;
exports.foo = 3;
exports.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-commonjs-export-individual-default/b3.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual-default/b3.js | Object.defineProperty(exports, '__esModule', {value: true});
exports.foo = 5;
exports.default = 6;
| 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-commonjs-export-individual-default/b1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual-default/b1.js | exports.foo = 1;
exports.default = 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-commonjs-export-individual-default/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual-default/a.js | import x from "./b1.js";
import y from "./b2.js";
import z from "./b3.js";
output = {x, y, z};
| 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-default/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-default/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-default/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-default/c.js | export default 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-default/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-default/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/pure-assignment/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/pure-assignment/b.js | export const foo = 2;
export function bar() {}
bar.displayName = 'hello';
| 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/pure-assignment/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/pure-assignment/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/commonjs-exports-reassign/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/commonjs-exports-reassign/b.js | exports.fn = () => 'foobar';
exports = 42;
| 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/commonjs-exports-reassign/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/commonjs-exports-reassign/a.js | const b = require('./b')
output = [b.fn(), 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/unused-require/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unused-require/index.js | import {foo} from './library';
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/unused-require/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unused-require/library/index.js | export { foo, unusedFoo } from './foo';
eval('')
| 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/unused-require/library/foo/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unused-require/library/foo/index.js | export const unusedFoo = 'unusedFoo';
export { foo } 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/unused-require/library/foo/other.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unused-require/library/foo/other.js | 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/export-default-js-global/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-js-global/b.js | export default Set;
| 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-js-global/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-js-global/a.js | import b from "./b.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/conditional-import-reference/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/conditional-import-reference/index.js | import a from './a';
if (false) {
console.log(a);
}
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/conditional-import-reference/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/conditional-import-reference/a.js | module.exports = 'hello'; | 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/raw-url/reexports.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/raw-url/reexports.js | export {default as assetUrl} from 'url:./foo.png';
| 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/raw-url/index-import.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/raw-url/index-import.js | import assetUrl from 'url:./foo.png';
output = assetUrl;
| 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/raw-url/index-reexport.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/raw-url/index-reexport.js | import {assetUrl} from './reexports';
output = assetUrl;
| 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-side-effects/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary-side-effects/index.js | import { OPERATIONAL_EVENT_TYPE } from "./types";
output = import("./async").then(({default: v}) => [OPERATIONAL_EVENT_TYPE, 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/re-export-bundle-boundary-side-effects/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary-side-effects/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-side-effects/switcher/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary-side-effects/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-side-effects/types/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-bundle-boundary-side-effects/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/re-export-exclude-default/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-exclude-default/b.js | export * 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-exclude-default/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-exclude-default/c.js | export default 2;
export var foo = 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-exclude-default/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-exclude-default/a.js | import b, {foo} from './b';
output = {b, 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/update-used-symbols-remove-export/b.1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-remove-export/b.1.js | export const foo = 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-remove-export/b.2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-remove-export/b.2.js | export const bar = 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-remove-export/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-remove-export/a.js | import { foo } from "./b.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/import-commonjs-export-individual/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual/b.js | import { name, version } from './c.js';
function getId() {
return name + ":"+ version
};
export { name, version, getId };
| 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-commonjs-export-individual/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual/c.js | module.exports.name = "name";
module.exports.version = "1.2.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-commonjs-export-individual/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-commonjs-export-individual/a.js | import {getId} from "./b.js";
output = getId();
| 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-undefined/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-undefined/a.js | export {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/shared-bundle-side-effect-order/run2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/run2.js | import x from "./shared2.js";
sideEffect("run2 " + 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/shared-bundle-side-effect-order/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/index.js | output = import('./a.js').then(() => import('./b.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/shared-bundle-side-effect-order/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/b.js | import "./shared1.js";
import "./shared2.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/shared-bundle-side-effect-order/run1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/run1.js | import x from "./shared1.js";
sideEffect("run1 " + 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/shared-bundle-side-effect-order/shared1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/shared1.js | sideEffect("shared1");
export default 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/shared-bundle-side-effect-order/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/a.js | import "./run1.js";
import "./run2.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/shared-bundle-side-effect-order/shared2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-order/shared2.js | sideEffect("shared2");
export default 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/default-export-variable/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-variable/b.js | var foo = 2;
export default 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/default-export-variable/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-variable/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-re-exports-rename-chained/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/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-re-exports-rename-chained/library/message2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/library/message2.js | sideEffect("message2");
export default "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/side-effects-re-exports-rename-chained/library/message1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/library/message1.js | sideEffect("message1");
export default "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-re-exports-rename-chained/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/library/index.js | sideEffect("index");
export { message1, message2 } from "./index2";
| 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-chained/library/index2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/library/index2.js | sideEffect("index2");
export { message1, message2 } from "./message";
| 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-chained/library/message.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-rename-chained/library/message.js | sideEffect("message");
export { default as message1 } from "./message1";
export { default as message2 } from "./message2";
| 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-superclass/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-superclass/b.js | export default class Superclass {
parentMethod(){
return 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-superclass/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/rename-superclass/a.js | import Superclass from './b';
class Test extends Superclass {}
output = new Test().parentMethod();
| 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-commonjs/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-commonjs/b.js | import { message2 } from "./library/index.js";
output = message2;
| 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-commonjs/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-commonjs/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-commonjs/library/commonjs.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-commonjs/library/commonjs.js | sideEffect("commonjs");
let x = module.exports;
x["message2"] = "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/side-effects-commonjs/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-commonjs/library/index.js | sideEffect("index")
export * from "./esm.js";
export * from "./commonjs.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-commonjs/library/esm.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-commonjs/library/esm.js | sideEffect("esm");
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-export-reexport/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-export-reexport/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-export-reexport/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-export-reexport/library/index.js | sideEffect("index");
export const message1 = "Message 1";
export * from "./other.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-export-reexport/library/other.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-export-reexport/library/other.js | sideEffect("other");
export const message2 = " 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/unmarks-defer-for-assetgroup/index2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/index2.js | import { barer, foo } from './package';
output = `${barer} ${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/unmarks-defer-for-assetgroup/index3.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/index3.js | import { barer, foo, bar } from './package';
output = `${barer} ${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/unmarks-defer-for-assetgroup/index1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/index1.js | import { barer } from './package';
output = barer;
| 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/unmarks-defer-for-assetgroup/package/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/package/index.js | export {foo} from './foo';
export {bar} from './bar';
export {barer} from './barer';
sideEffectNoop(module);
| 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/unmarks-defer-for-assetgroup/package/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/package/bar.js | 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/unmarks-defer-for-assetgroup/package/barer.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/package/barer.js | export {bar as barer} 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/unmarks-defer-for-assetgroup/package/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/unmarks-defer-for-assetgroup/package/foo.js | 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/name-clash/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/name-clash/b.js | var $exports = module.exports = {}
$exports.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/name-clash/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/name-clash/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-fallback-3/stuff.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/stuff.js | //@flow
import {fooBar} from './other'
import {FOO, BAR, type MyString} from './re-exports'
import("./async");
const res = (): MyString => fooBar() + "!";
// $FlowFixMe
sideEffectNoop(res());
export const doStuff = res;
| 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-3/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/foo.js | //@flow
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/re-export-all-fallback-3/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/async.js | import { FOO } from './re-exports';
sideEffectNoop(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-fallback-3/re-exports.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/re-exports.js | //@flow
export * from './foo';
export * from './rest'; | 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-3/entry.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/entry.js | import {doStuff} from './stuff';
output = doStuff();
| 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-3/rest/myString.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/rest/myString.js | //@flow
export type MyString = string;
| 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-3/rest/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/rest/index.js | //@flow
export * from './bar';
export * from './myString';
export * from './hello';
| 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-3/rest/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/rest/bar.js | //@flow
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/re-export-all-fallback-3/rest/hello.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/rest/hello.js | //@flow
export type Hello = 1 | 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-3/other/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all-fallback-3/other/index.js | //@flow
import {FOO, BAR, type MyString} from "../re-exports";
const myFunc = (): MyString => FOO + BAR;
let res = myFunc();
export const fooBar = (): MyString => res; | 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/ancestor-reexport2/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport2/b.js | import { foo } from "./library/b.js";
output = import("./async.js").then(v => [foo, v.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/ancestor-reexport2/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport2/async.js | import { foo } from "./library/a.js";
export default foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.