Files
react/compiler/crates/react_hermes_parser/tests/fixtures/codegen-emit-make-read-only.js
2024-04-02 16:49:31 -07:00

12 lines
155 B
JavaScript

// @enableEmitFreeze true
function MyComponentName(props) {
let x = {};
foo(x, props.a);
foo(x, props.b);
let y = [];
y.push(x);
return y;
}