ITADN

callable proxies support

#935OpenChALkeR 创建于 2026-02-07
C
ChALkeRcommented
```js const p = new Proxy(() => {}, { apply() { return 2 } }) print(p()) ``` Fails with `Uncaught exception: TypeError: Not a callable object`, should print 2
0 条评论