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

9 lines
118 B
JavaScript

function Foo() {}
function Component(props) {
const a = [];
const b = {};
let c = new Foo(a, b);
return c;
}