Files
react/compiler/crates/react_hermes_parser/tests/fixtures/codegen-emit-make-read-only.js

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;
}