Files
2026-08-27 21:09:14 +00:00

11 lines
206 B
JavaScript

function foo(a, b, c) {
// Construct and freeze x
const x = makeObject(a);
<div>{x}</div>;
// y should depend on `x` and `b`
const method = x.method;
const y = method.call(x, b);
return y;
}