(target *Object, this Value, args []Value)
| 276 | } |
| 277 | |
| 278 | func (h *jsProxyHandler) apply(target *Object, this Value, args []Value) (Value, bool) { |
| 279 | return h.proxyCall(proxy_trap_apply, target, this, h.handler.runtime.newArrayValues(args)) |
| 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) |
nothing calls this directly
no test coverage detected