(o, x)
| 96 | test(() => { |
| 97 | const proxy = new Proxy({}, { |
| 98 | has(o, x) { |
| 99 | assert_unreached(`Should not call [[HasProperty]] with ${x}`); |
| 100 | }, |
| 101 | get(o, x) { |
| 102 | switch (x) { |
| 103 | case "element": |
nothing calls this directly
no test coverage detected