Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/debugger.js
T

18 lines
256 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
function Component(props) {
debugger;
if (props.cond) {
debugger;
} else {
while (props.cond) {
debugger;
}
}
debugger;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};