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

8 lines
75 B
JavaScript

function foo() {
let x = 1;
if (x === 1) {
x = 2;
}
throw x;
}