react-code-dataset
/
next.js
/turbopack
/crates
/turbopack-ecmascript
/tests
/tree-shaker
/analyzer
/shared-regression
/input.js
| export const order = []; | |
| order.push("a"); | |
| const random = Math.random(); | |
| const shared = { random, effect: order.push("b") }; | |
| order.push("c"); | |
| export const a = { shared, a: "aaaaaaaaaaa" }; | |
| export const b = { shared, b: "bbbbbbbbbbb" }; | |