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

8 lines
82 B
JavaScript

function foo(a, b) {
let x = 0;
while (a.b.c) {
x += b;
}
return x;
}