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

11 lines
126 B
JavaScript

function foo(a, b, c) {
label: if (a) {
while (b) {
if (c) {
break label;
}
}
}
return c;
}