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

7 lines
64 B
JavaScript

function foo(a, b) {
while (a) {
break;
}
return b;
}