Files
react/compiler/crates/react_hermes_parser/tests/fixtures/complex-while.js
T

11 lines
126 B
JavaScript

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