Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

Items

Count: 14

Item 1: Stmt 0, Normal

function d1() {}
  • Hoisted
  • Declares: d1
  • Write: d1

Item 2: Stmt 1, Normal

function d2() {}
  • Hoisted
  • Declares: d2
  • Write: d2

Item 3: Stmt 2, Normal

function d3() {}
  • Hoisted
  • Declares: d3
  • Write: d3

Item 4: Stmt 3, Normal

export function c1_1() {
    return c1_2();
}
  • Hoisted
  • Declares: c1_1
  • Reads (eventual): c1_2
  • Write: c1_1

Item 5: Stmt 4, Normal

function c1_2() {
    return c1_3(d1);
}
  • Hoisted
  • Declares: c1_2
  • Reads (eventual): c1_3, d1
  • Write: c1_2

Item 6: Stmt 5, Normal

export function c1_3() {
    return c1_1(d2);
}
  • Hoisted
  • Declares: c1_3
  • Reads (eventual): c1_1, d2
  • Write: c1_3

Item 7: Stmt 6, Normal

function c2_1() {
    return c2_2(d3);
}
  • Hoisted
  • Declares: c2_1
  • Reads (eventual): c2_2, d3
  • Write: c2_1

Item 8: Stmt 7, Normal

export function c2_2() {
    return c2_3();
}
  • Hoisted
  • Declares: c2_2
  • Reads (eventual): c2_3
  • Write: c2_2

Item 9: Stmt 8, Normal

function c2_3() {
    return c2_1();
}
  • Hoisted
  • Declares: c2_3
  • Reads (eventual): c2_1
  • Write: c2_3

Item 10: Stmt 9, Normal

c1_3();
  • Side effects
  • Reads: c1_3

Item 11: Stmt 10, Normal

c2_2();
  • Side effects
  • Reads: c2_2

Phase 1

graph TD
    Item1;
    Item2;
    Item3;
    Item4;
    Item5;
    Item6;
    Item7;
    Item8;
    Item9;
    Item10;
    Item11;
    Item12;
    Item12["export c1_1"];
    Item13;
    Item13["export c1_3"];
    Item14;
    Item14["export c2_2"];

Phase 2

graph TD
    Item1;
    Item2;
    Item3;
    Item4;
    Item5;
    Item6;
    Item7;
    Item8;
    Item9;
    Item10;
    Item11;
    Item12;
    Item12["export c1_1"];
    Item13;
    Item13["export c1_3"];
    Item14;
    Item14["export c2_2"];
    Item10 --> Item6;
    Item10 -.-> Item5;
    Item10 -.-> Item1;
    Item10 -.-> Item4;
    Item10 -.-> Item2;
    Item10 -.-> Item8;
    Item10 -.-> Item3;
    Item10 -.-> Item9;
    Item10 -.-> Item7;
    Item11 --> Item8;
    Item11 --> Item10;
    Item11 -.-> Item5;
    Item11 -.-> Item6;
    Item11 -.-> Item1;
    Item11 -.-> Item4;
    Item11 -.-> Item2;
    Item11 -.-> Item3;
    Item11 -.-> Item9;
    Item11 -.-> Item7;
    Item12 --> Item4;
    Item13 --> Item6;
    Item14 --> Item8;

Phase 3

graph TD
    Item1;
    Item2;
    Item3;
    Item4;
    Item5;
    Item6;
    Item7;
    Item8;
    Item9;
    Item10;
    Item11;
    Item12;
    Item12["export c1_1"];
    Item13;
    Item13["export c1_3"];
    Item14;
    Item14["export c2_2"];
    Item10 --> Item6;
    Item10 -.-> Item5;
    Item10 -.-> Item1;
    Item10 -.-> Item4;
    Item10 -.-> Item2;
    Item10 -.-> Item8;
    Item10 -.-> Item3;
    Item10 -.-> Item9;
    Item10 -.-> Item7;
    Item11 --> Item8;
    Item11 --> Item10;
    Item11 -.-> Item5;
    Item11 -.-> Item6;
    Item11 -.-> Item1;
    Item11 -.-> Item4;
    Item11 -.-> Item2;
    Item11 -.-> Item3;
    Item11 -.-> Item9;
    Item11 -.-> Item7;
    Item12 --> Item4;
    Item13 --> Item6;
    Item14 --> Item8;
    Item4 --> Item5;
    Item5 --> Item6;
    Item5 --> Item1;
    Item6 --> Item4;
    Item6 --> Item2;
    Item7 --> Item8;
    Item7 --> Item3;
    Item8 --> Item9;
    Item9 --> Item7;

Phase 4

graph TD
    Item1;
    Item2;
    Item3;
    Item4;
    Item5;
    Item6;
    Item7;
    Item8;
    Item9;
    Item10;
    Item11;
    Item12;
    Item12["export c1_1"];
    Item13;
    Item13["export c1_3"];
    Item14;
    Item14["export c2_2"];
    Item10 --> Item6;
    Item10 -.-> Item5;
    Item10 -.-> Item1;
    Item10 -.-> Item4;
    Item10 -.-> Item2;
    Item10 -.-> Item8;
    Item10 -.-> Item3;
    Item10 -.-> Item9;
    Item10 -.-> Item7;
    Item11 --> Item8;
    Item11 --> Item10;
    Item11 -.-> Item5;
    Item11 -.-> Item6;
    Item11 -.-> Item1;
    Item11 -.-> Item4;
    Item11 -.-> Item2;
    Item11 -.-> Item3;
    Item11 -.-> Item9;
    Item11 -.-> Item7;
    Item12 --> Item4;
    Item13 --> Item6;
    Item14 --> Item8;
    Item4 --> Item5;
    Item5 --> Item6;
    Item5 --> Item1;
    Item6 --> Item4;
    Item6 --> Item2;
    Item7 --> Item8;
    Item7 --> Item3;
    Item8 --> Item9;
    Item9 --> Item7;

Final

graph TD
    N0["Items: [ItemId(0, Normal)]"];
    N1["Items: [ItemId(1, Normal)]"];
    N2["Items: [ItemId(2, Normal)]"];
    N3["Items: [ItemId(3, Normal), ItemId(4, Normal), ItemId(5, Normal)]"];
    N4["Items: [ItemId(6, Normal), ItemId(7, Normal), ItemId(8, Normal)]"];
    N5["Items: [ItemId(9, Normal), ItemId(10, Normal)]"];
    N6["Items: [ItemId(Export(("c1_1", #2), "c1_1"))]"];
    N7["Items: [ItemId(Export(("c1_3", #2), "c1_3"))]"];
    N8["Items: [ItemId(Export(("c2_2", #2), "c2_2"))]"];
    N7 --> N3;
    N8 --> N4;
    N3 --> N0;
    N3 --> N1;
    N4 --> N2;
    N5 -.-> N4;
    N6 --> N3;
    N5 -.-> N3;
    N5 -.-> N0;
    N5 -.-> N1;
    N5 -.-> N2;

Entrypoints

{
    ModuleEvaluation: 5,
    Export(
        "c1_1",
    ): 6,
    Export(
        "c1_3",
    ): 7,
    Export(
        "c2_2",
    ): 8,
    Exports: 9,
}

Modules (dev)

Part 0

function d1() {}
export { d1 as a } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 1

function d2() {}
export { d2 as b } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 2

function d3() {}
export { d3 as c } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 3

import { b as d2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -1
};
import { a as d1 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
function c1_1() {
    return c1_2();
}
function c1_2() {
    return c1_3(d1);
}
function c1_3() {
    return c1_1(d2);
}
export { c1_1 as d } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c1_2 as e } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c1_3 as f } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 4

import { c as d3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -2
};
function c2_1() {
    return c2_2(d3);
}
function c2_2() {
    return c2_3();
}
function c2_3() {
    return c2_1();
}
export { c2_1 as g } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c2_2 as h } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c2_3 as i } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 5

import { f as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -3
};
import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -4
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 0
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 1
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 2
};
c1_3();
c2_2();
export { };

Part 6

import { d as c1_1 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -3
};
export { c1_1 };

Part 7

import { f as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -3
};
export { c1_3 };

Part 8

import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -4
};
export { c2_2 };

Part 9

export { c1_1 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c1_1"
};
export { c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c1_3"
};
export { c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c2_2"
};

Merged (module eval)

import { f as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -3
};
import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -4
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 0
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 1
};
import "__TURBOPACK_PART__" assert {
    __turbopack_part__: 2
};
c1_3();
c2_2();
export { };

Entrypoints

{
    ModuleEvaluation: 2,
    Export(
        "c1_1",
    ): 3,
    Export(
        "c1_3",
    ): 4,
    Export(
        "c2_2",
    ): 5,
    Exports: 6,
}

Modules (prod)

Part 0

function d1() {}
function d2() {}
function c1_1() {
    return c1_2();
}
function c1_2() {
    return c1_3(d1);
}
function c1_3() {
    return c1_1(d2);
}
export { d1 as a } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { d2 as b } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c1_1 as c } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c1_2 as d } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c1_3 as e } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 1

function d3() {}
function c2_1() {
    return c2_2(d3);
}
function c2_2() {
    return c2_3();
}
function c2_3() {
    return c2_1();
}
export { d3 as f } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c2_1 as g } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c2_2 as h } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};
export { c2_3 as i } from "__TURBOPACK_VAR__" assert {
    __turbopack_var__: true
};

Part 2

import { e as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -1
};
c1_3();
c2_2();
export { };

Part 3

import { c as c1_1 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
export { c1_1 };

Part 4

import { e as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
export { c1_3 };

Part 5

import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -1
};
export { c2_2 };

Part 6

export { c1_1 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c1_1"
};
export { c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c1_3"
};
export { c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: "export c2_2"
};

Merged (module eval)

import { e as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -1
};
c1_3();
c2_2();
export { };

Entrypoints

{
    ModuleEvaluation: 2,
    Export(
        "c1_1",
    ): 3,
    Export(
        "c1_3",
    ): 4,
    Export(
        "c2_2",
    ): 5,
    Exports: 6,
}

Merged (c1_3)

import { e as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
export { c1_3 };

Entrypoints

{
    ModuleEvaluation: 2,
    Export(
        "c1_1",
    ): 3,
    Export(
        "c1_3",
    ): 4,
    Export(
        "c2_2",
    ): 5,
    Exports: 6,
}

Merged (c1_3,c2_2)

import { e as c1_3 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -0
};
import { h as c2_2 } from "__TURBOPACK_PART__" assert {
    __turbopack_part__: -1
};
export { c1_3 };
export { c2_2 };