(target *Object, args []Value, newTarget *Object)
| 280 | } |
| 281 | |
| 282 | func (h *jsProxyHandler) construct(target *Object, args []Value, newTarget *Object) (Value, bool) { |
| 283 | return h.proxyCall(proxy_trap_construct, target, h.handler.runtime.newArrayValues(args), newTarget) |
| 284 | } |
| 285 | |
| 286 | type proxyObject struct { |
| 287 | baseObject |
nothing calls this directly
no test coverage detected