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

7 lines
88 B
JavaScript

function Component(props) {
do {
break;
} while (props.cond);
return props;
}