(test, x, y, z)
| 35 | // Helper. |
| 36 | |
| 37 | function TestWithProxies(test, x, y, z) { |
| 38 | // Separate function for nicer stack traces. |
| 39 | TestWithObjectProxy(test, x, y, z); |
| 40 | TestWithFunctionProxy(test, x, y, z); |
| 41 | } |
| 42 | |
| 43 | function TestWithObjectProxy(test, x, y, z) { |
| 44 | test((handler) => { return new Proxy({}, handler) }, x, y, z) |
no test coverage detected