Files
react/compiler/crates/react_semantic_analysis/tests/fixtures/simple-function.js
2024-04-02 16:49:31 -07:00

10 lines
142 B
JavaScript

function Component(a) {
Math;
let b = 0;
const foo = function foo_(c) {
let d = 1;
return a + b + c + d;
};
return foo();
}