(o, x)
| 69 | test(() => { |
| 70 | const proxy = new Proxy({}, { |
| 71 | has(o, x) { |
| 72 | assert_unreached(`Should not call [[HasProperty]] with ${x}`); |
| 73 | }, |
| 74 | get(o, x) { |
| 75 | // Due to the requirement not to supply both minimum and initial, we need to ignore one of them. |
| 76 | switch (x) { |
nothing calls this directly
no test coverage detected