Files
react/compiler/crates/react_hermes_parser/tests/fixtures/debugger-memoized.js
2024-04-02 16:49:31 -07:00

7 lines
93 B
JavaScript

function Component(props) {
const x = [];
debugger;
x.push(props.value);
return x;
}