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
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/static-of-class/other/module-unused.js
test/cases/inner-graph/static-of-class/other/module-unused.js
export function x() {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/static-of-class/other/module-used.js
test/cases/inner-graph/static-of-class/other/module-used.js
export function x() {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular2/index.js
test/cases/inner-graph/circular2/index.js
import { x, y, z, a, f3 } from "./module"; it("should be able to handle circular referenced", () => { expect(x()).toEqual([y, z]); const [_a, b, c, d] = a(); expect(b()).toEqual([a, b, c, d]); expect(c()).toEqual([a, b, c, d]); expect(d()).toEqual([a, b, c, d]); const [f2, f4] = f3(); const [f1, _f3] = f2(); e...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular2/module.js
test/cases/inner-graph/circular2/module.js
function x() { return [y, z]; } function y() { return [x, z]; } function z() { return [x, y]; } export { x, y, z }; function a() { return [a, b, c, d]; } function b() { return [a, b, c, d]; } function c() { return [a, b, c, d]; } function d() { return [a, b, c, d]; } export { a }; function f1() { retur...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular/inner.js
test/cases/inner-graph/circular/inner.js
export function A(s) { return s + "A"; } export function B(s) { return s + "B"; } export function C(s) { return s + "C"; } export const exportAUsed = __webpack_exports_info__.A.used; export const exportBUsed = __webpack_exports_info__.B.used; export const exportCUsed = __webpack_exports_info__.C.used;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular/index.js
test/cases/inner-graph/circular/index.js
import { exportAUsed, exportBUsed, exportCUsed } from "./inner"; import { y } from "./module"; it("export should be unused when only unused functions use it", () => { expect(y("a")).toBe("okBAA"); expect(exportAUsed).toBe(true); expect(exportBUsed).toBe(true); if (process.env.NODE_ENV === "production") { expect(...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular/chunk.js
test/cases/inner-graph/circular/chunk.js
import "./inner";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/circular/module.js
test/cases/inner-graph/circular/module.js
import { A, B, C } from "./inner"; function x(type) { switch (type) { case "a": return withA("b"); case "b": return withB("c"); case "c": return "ok"; } } function y(v) { return withA(v); } function withA(v) { const value = x(v); return A(value); } function withB(v) { const value = x(v); ret...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/try-globals/import-module.js
test/cases/inner-graph/try-globals/import-module.js
import { ok, ok2 } from "./module"; expect(ok).toBe(true); expect(ok2).toBe(true);
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/try-globals/index.js
test/cases/inner-graph/try-globals/index.js
it("should not threat globals as pure", () => { require("./import-module"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/try-globals/module.js
test/cases/inner-graph/try-globals/module.js
try { var x = NOT_DEFINED; var y = x; var ok = false; } catch (e) { var yep = true; var ok = yep; } try { const b = a; var c = b; const a = 42; var ok2 = false; eval(""); // TODO terser has a bug and incorrectly remove this code, eval opts out } catch (e) { var ok2 = true; } export { x, y, c, ok, ok2 };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module3.js
test/cases/inner-graph/extend-class/module3.js
import A from "./a.js"; let a = new A(); a.test();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module6.js
test/cases/inner-graph/extend-class/module6.js
import { J } from "./dep2"; class BaseJ extends J {} class BaseBaseJ extends BaseJ {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module7.js
test/cases/inner-graph/extend-class/module7.js
import { K } from "./dep2"; class BaseK extends K {} class BaseBaseK extends BaseK {} export default new BaseBaseK();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/test.filter.js
test/cases/inner-graph/extend-class/test.filter.js
"use strict"; const supportsClassStaticBlock = require("../../../helpers/supportsClassStaticBlock"); module.exports = () => supportsClassStaticBlock();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module9.js
test/cases/inner-graph/extend-class/module9.js
import { SuperClass } from "./dep2"; var UnusedClass = class extends SuperClass { constructor() { super(); } }, unusedVariable = new UnusedClass();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/index.js
test/cases/inner-graph/extend-class/index.js
import { exportsInfoForA, exportsInfoForB, exportsInfoForC, exportsInfoForY, exportsInfoForZ, exportsInfoForW, exportsInfoForJ, exportsInfoForK, exportsInfoForMixin1, exportsInfoForMixin2, exportsInfoForMixin3, exportsInfoForMixin4, exportsInfoForMixin5, exportsInfoForBaseError, exportsInfoForBaseError1,...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/b.js
test/cases/inner-graph/extend-class/b.js
import A from "./a.js"; import { A1 } from "./dep1"; export default class B { constructor() {} test() { this.a = new A(); this.a2 = new A1(); } }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/dep2.js
test/cases/inner-graph/extend-class/dep2.js
export const A = class A {}; export class B {} export class C {} export class Y {} export class Z {} export function mixin1(_class) {return _class} export function mixin2(_class) {return _class} export function mixin3(_class) {return _class} export function mixin4(_class) {return _class} export function mixin5(_class) ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module1.js
test/cases/inner-graph/extend-class/module1.js
import {A1} from "./dep1"; export default new A1();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/dep3.js
test/cases/inner-graph/extend-class/dep3.js
import {mixin1, mixin2, mixin3, getField, A, B, C, Y, mixin4} from "./dep2"; export const A1 = class A1 extends A { render() {return new E();} }; export const B1 = class B1 extends /*#__PURE__*/ mixin1(B) { render() {return new E();} }; export const C1 = class C1 extends mixin2(Y, /*#__PURE__*/ mixin3(C)) { rende...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module2.js
test/cases/inner-graph/extend-class/module2.js
import {A1} from "./dep3"; export default new A1();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module5.js
test/cases/inner-graph/extend-class/module5.js
import { W } from "./dep2"; class BaseW extends W {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/c.js
test/cases/inner-graph/extend-class/c.js
import { BaseError, BaseError1, BaseError2, BaseError3 } from "./dep2"; export class ExtendedError extends BaseError { constructor(message) { super(message); } } export class ExtendedError1 extends BaseError1 { constructor(message) { super(message); } } export class ExtendedError2 extends BaseError2 { myMetho...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module4.js
test/cases/inner-graph/extend-class/module4.js
import {ExtendedError4} from "./c.js"; export default new ExtendedError4()
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/module8.js
test/cases/inner-graph/extend-class/module8.js
import { mixin5 } from "./dep2"; class Bar extends /*#__PURE__*/ mixin5(null) { static displayName = "Point"; } function test() { return Bar.displayName; }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/a.js
test/cases/inner-graph/extend-class/a.js
import B from "./b.js"; import { A1 } from "./dep1"; export default class A extends B { constructor() { super(); } test() { super.test(); this.b = new B(); this.a1 = new A1(); } }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/extend-class/dep1.js
test/cases/inner-graph/extend-class/dep1.js
import { A, B, Z, W } from "./dep2"; export const A1 = class A1 extends A { render() {return new E();} }; class B1 extends B { render() {return new D();} } export class Z1 extends Z {} export class E {} class D { foo() { class B2 extends B {} return B2; } } export const isZ = (new Z1()) instanceof Z; expo...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/simple/inner.js
test/cases/inner-graph/simple/inner.js
export const EXPORT = 42; export const EXPORT2 = 42; export const EXPORT3 = 42; export const EXPORT4 = 42; export const EXPORT5 = () => 42; export const EXPORT6 = () => 42; export const exportUsed = __webpack_exports_info__.EXPORT.used; export const export2Used = __webpack_exports_info__.EXPORT2.used; export const exp...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/simple/index.js
test/cases/inner-graph/simple/index.js
import { exportUsed, export2Used, export3Used, export4Used, export5Used, export6Used } from "./inner"; import { f1, pureUsed, fWithDefault } from "./module"; it("export should be unused when only unused functions use it", () => { f1(); expect(pureUsed).toBe(42); expect(fWithDefault()).toBe(42); if (process.e...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/simple/chunk.js
test/cases/inner-graph/simple/chunk.js
import "./inner";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/simple/module.js
test/cases/inner-graph/simple/module.js
import { EXPORT, EXPORT2, EXPORT3, EXPORT4, EXPORT5, EXPORT6 } from "./inner"; export function f1() { // no using EXPORT } export function f2() { return EXPORT; } function f3() { return EXPORT; } const f4 = function () { return EXPORT; }; const f5 = () => { return EXPORT; }; let f6 = () => { return EXPORT; ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/index.js
test/cases/inner-graph/export-default-named/index.js
import A from "./a"; import "./b"; import "./c"; import D from "./d"; import "./e"; import "./f"; import a from "./dep?a"; import b from "./dep?b"; import c from "./dep?c"; import d from "./dep?d"; import e from "./dep?e"; import f from "./dep?f"; it("should generate valid code", () => { expect(A()).toBe("x"); expe...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/b.js
test/cases/inner-graph/export-default-named/b.js
import { x } from "./dep?b"; export default function abc() { return x; }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/d.js
test/cases/inner-graph/export-default-named/d.js
import { x } from "./dep?d"; export default class def { method() { return x; } }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/f.js
test/cases/inner-graph/export-default-named/f.js
import { x } from "./dep?f"; export default class def { method() { return x; } } new def().method();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/e.js
test/cases/inner-graph/export-default-named/e.js
import { x } from "./dep?e"; export default class def { method() { return x; } }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/c.js
test/cases/inner-graph/export-default-named/c.js
import { x } from "./dep?c"; export default function abc() { return x; } abc();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/dep.js
test/cases/inner-graph/export-default-named/dep.js
export const x = "x"; export default __webpack_exports_info__.x.used;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/inner-graph/export-default-named/a.js
test/cases/inner-graph/export-default-named/a.js
import { x } from "./dep?a"; export default function abc() { return x; }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/delete-issue-10831/index.js
test/cases/scope-hoisting/delete-issue-10831/index.js
import { object } from "./module"; it("should allow to delete a imported property", () => { expect(object).toEqual({ property: true }); delete object.property; expect(object).toEqual({}); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/delete-issue-10831/module.js
test/cases/scope-hoisting/delete-issue-10831/module.js
export const object = { property: true };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-5096/index.js
test/cases/scope-hoisting/issue-5096/index.js
import { b } from './b'; export function a() { return "a"; }; // Inject a variable if(Math.random() < -1) console.log(module); it("should compile fine", function() { expect(b).toBe("a"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-5096/b.js
test/cases/scope-hoisting/issue-5096/b.js
import { a } from './index'; export const b = a();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/index.js
test/cases/scope-hoisting/import-order-11617/index.js
import "./x"; import "./y"; import "./a"; import { log } from "./tracker"; it("should evaluate import in the correct order", function () { expect(log).toEqual(["b", "c", "a"]); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/b.js
test/cases/scope-hoisting/import-order-11617/b.js
import "./x"; import { track } from "./tracker"; track("b");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/tracker.js
test/cases/scope-hoisting/import-order-11617/tracker.js
export var log = []; export function track(name) { log.push(name); }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/x.js
test/cases/scope-hoisting/import-order-11617/x.js
console.log.bind(console);
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/y.js
test/cases/scope-hoisting/import-order-11617/y.js
console.log.bind(console);
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/c.js
test/cases/scope-hoisting/import-order-11617/c.js
var track = require("./tracker").track; track("c");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/import-order-11617/a.js
test/cases/scope-hoisting/import-order-11617/a.js
import "./b"; import "./c"; import { track } from "./tracker"; track("a");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-star-external-cjs/index.js
test/cases/scope-hoisting/reexport-star-external-cjs/index.js
var c = require("./c"); it("should have the correct values", function() { expect(c.named).toBe("named"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-star-external-cjs/b.js
test/cases/scope-hoisting/reexport-star-external-cjs/b.js
export var other = "other";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-star-external-cjs/c.js
test/cases/scope-hoisting/reexport-star-external-cjs/c.js
export * from "./a"; export * from "./b";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-star-external-cjs/a.js
test/cases/scope-hoisting/reexport-star-external-cjs/a.js
exports.named = "named";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/main.js
test/cases/scope-hoisting/issue-10409/main.js
import cts from "./cts"; import a from "./a";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/index.js
test/cases/scope-hoisting/issue-10409/index.js
it("should import these modules correctly", () => { return import("./main"); }); if (Math.random() < 0) import("./b");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/b.js
test/cases/scope-hoisting/issue-10409/b.js
import cts from "./cts"; export function b() {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/cts.js
test/cases/scope-hoisting/issue-10409/cts.js
import * as cts from "./cts"; export { cts as default }; export function connectData() {} export function yyy() {} export { b } from "./b"; export { c } from "./c";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/c.js
test/cases/scope-hoisting/issue-10409/c.js
import cts from "./cts"; import a from "./a"; export function c() {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-10409/a.js
test/cases/scope-hoisting/issue-10409/a.js
import cts from "./cts"; export default cts.connectData(function() {});
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/inside-class/test.filter.js
test/cases/scope-hoisting/inside-class/test.filter.js
"use strict"; const supportsES6 = require("../../../helpers/supportsES6"); module.exports = () => supportsES6();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/inside-class/index.js
test/cases/scope-hoisting/inside-class/index.js
import { Foo, Bar as FirstBar } from "./first" import { Foo as SecondFoo, Bar } from "./second" it("should renamed class reference in inner scope", function() { var a = new Foo().test(); var b = new SecondFoo().test(); expect(a).toBe(1); expect(b).toBe(2); expect(new FirstBar().test()).toBe(1); expect(new Bar()....
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/inside-class/second.js
test/cases/scope-hoisting/inside-class/second.js
export class Foo { test() { return Foo.value; } } Foo.value = 2; export class Bar { test() { return Bar.value; } } Bar.value = 2;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/inside-class/first.js
test/cases/scope-hoisting/inside-class/first.js
export class Foo { test() { return Foo.value; } } Foo.value = 1; export class Bar { test() { return Bar.value; } } Bar.value = 1;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/external-root/index.js
test/cases/scope-hoisting/external-root/index.js
import "./module"; import f, { ns } from "./root2"; import * as r2 from "./root2"; it("should be able to import a secondary root", () => { expect(f()).toBe("ok"); expect(f.x()).toBe("ok"); expect(ns.f()).toBe("ok"); expect(ns.f.x()).toBe("ok"); expect(r2.ns.f()).toBe("ok"); expect(r2.ns.f.x()).toBe("ok"); retur...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/external-root/root2-module.js
test/cases/scope-hoisting/external-root/root2-module.js
const f = () => "ok"; f.x = function() { return this(); }; export { f };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/external-root/chunk.js
test/cases/scope-hoisting/external-root/chunk.js
import result from "./root2";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/external-root/root2.js
test/cases/scope-hoisting/external-root/root2.js
import * as ns from "./root2-module"; const f = () => "ok"; f.x = function() { return this(); }; export default f; export { ns };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/external-root/module.js
test/cases/scope-hoisting/external-root/module.js
export {};
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/chunk1.js
test/cases/scope-hoisting/side-effects-11990-star/chunk1.js
import { value3 } from "./reexport"; expect(value3).toBe(42);
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/reexport.js
test/cases/scope-hoisting/side-effects-11990-star/reexport.js
export * from "./reexport2"; import { value4 } from "./reexport2"; import v from "./reexport-concat"; export const value3 = v + value4 - value4;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/reexport2.js
test/cases/scope-hoisting/side-effects-11990-star/reexport2.js
export * from "./module"; export const value4 = 42; module.id;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/index.js
test/cases/scope-hoisting/side-effects-11990-star/index.js
import { value, value3 } from "./reexport"; it("should generate working code", () => { expect(value).toBe(42); expect(value3).toBe(42); }); it("should run the chunk1", () => import("./chunk1")); it("should run the chunk2", () => import("./chunk2"));
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/module-concat.js
test/cases/scope-hoisting/side-effects-11990-star/module-concat.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/chunk2.js
test/cases/scope-hoisting/side-effects-11990-star/chunk2.js
import { value2 } from "./module"; expect(value2).toBe(42);
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/reexport-concat.js
test/cases/scope-hoisting/side-effects-11990-star/reexport-concat.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/side-effects-11990-star/module.js
test/cases/scope-hoisting/side-effects-11990-star/module.js
export const value = 42; export const value2 = 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/c2.js
test/cases/scope-hoisting/circular-external/c2.js
export {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/a1.js
test/cases/scope-hoisting/circular-external/a1.js
import "./a2"; import "./b1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/index.js
test/cases/scope-hoisting/circular-external/index.js
it("should compile and run fine", function(done) { Promise.all([ import("./a1"), import("./b1"), import("./c1") ]).then(function() { done(); }); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/b2.js
test/cases/scope-hoisting/circular-external/b2.js
export {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/b1.js
test/cases/scope-hoisting/circular-external/b1.js
import "./b2"; import "./c1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/c1.js
test/cases/scope-hoisting/circular-external/c1.js
import "./c2"; import "./a1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/circular-external/a2.js
test/cases/scope-hoisting/circular-external/a2.js
export {}
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/file1.js
test/cases/scope-hoisting/renaming-shorthand-5027/file1.js
export var test = "test1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/test.filter.js
test/cases/scope-hoisting/renaming-shorthand-5027/test.filter.js
"use strict"; const supportDefaultAssignment = require("../../../helpers/supportDefaultAssignment"); const supportsES6 = require("../../../helpers/supportsES6"); const supportsIteratorDestructuring = require("../../../helpers/supportsIteratorDestructuring"); const supportsObjectDestructuring = require("../../../helper...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/file2.js
test/cases/scope-hoisting/renaming-shorthand-5027/file2.js
var [ test ] = [ "test2" ]; export { test }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/index.js
test/cases/scope-hoisting/renaming-shorthand-5027/index.js
import m from "./module"; it("should apply shorthand properties correctly when renaming", function() { expect(m).toEqual({ obj: { test: "test1", test2: "test2", test3: "test3", test4: "test4" }, nested: { array: [{ test: "test1", test2: "test2", test3: "test3", test4: "test4" }...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/file3.js
test/cases/scope-hoisting/renaming-shorthand-5027/file3.js
var { test } = { test: "test3" }; export { test }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/file4.js
test/cases/scope-hoisting/renaming-shorthand-5027/file4.js
var {o:[{ test }]} = {o:[{ test: "test4" }]}; export { test }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/renaming-shorthand-5027/module.js
test/cases/scope-hoisting/renaming-shorthand-5027/module.js
import { test } from './file1'; import { test as test2 } from './file2'; import { test as test3 } from './file3'; import { test as test4 } from './file4'; var obj = { test, test2, test3, test4 }; var nested = { array: [ { test, test2, test3, test4 }]}; function f(test = test2, { test2: t2 } = { test2 }, { t3 = test3 ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-exposed-harmony/index.js
test/cases/scope-hoisting/reexport-exposed-harmony/index.js
var c = require("./c"); it("should have the correct values", function() { expect(c.named).toBe("named"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-exposed-harmony/b.js
test/cases/scope-hoisting/reexport-exposed-harmony/b.js
export * from "./a";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-exposed-harmony/c.js
test/cases/scope-hoisting/reexport-exposed-harmony/c.js
export { named } from "./b";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/reexport-exposed-harmony/a.js
test/cases/scope-hoisting/reexport-exposed-harmony/a.js
export var named = "named";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-5481/index.js
test/cases/scope-hoisting/issue-5481/index.js
import value from "./module"; it("should not cause name conflicts", function() { expect((typeof value)).toBe("undefined"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-5481/cjs.js
test/cases/scope-hoisting/issue-5481/cjs.js
module.exports = "ok";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/issue-5481/module.js
test/cases/scope-hoisting/issue-5481/module.js
import a from "./cjs"; var cjs_default; export default cjs_default;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/cases/scope-hoisting/orphan/index.js
test/cases/scope-hoisting/orphan/index.js
import x from "pkg"; it("should compile fine", () => { const result = x; expect(result.value).toBe(42); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false