(target *Object)
| 175 | } |
| 176 | |
| 177 | func (h *jsProxyHandler) getPrototypeOf(target *Object) (Value, bool) { |
| 178 | return h.proxyCall(proxy_trap_getPrototypeOf, target) |
| 179 | } |
| 180 | |
| 181 | func (h *jsProxyHandler) setPrototypeOf(target *Object, proto *Object) (bool, bool) { |
| 182 | var protoVal Value |