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

7 lines
113 B
JavaScript

// @debug
function Component(props) {
const x = makeObject();
const y = delete x[props.value];
return y;
}