Files
react/compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-alias-computed-load.js
2024-04-02 16:49:31 -07:00

10 lines
101 B
JavaScript

function bar(a) {
let x = [a];
let y = {};
(function () {
y = x[0];
})();
return y;
}