(target *Object)
| 193 | } |
| 194 | |
| 195 | func (h *jsProxyHandler) preventExtensions(target *Object) (bool, bool) { |
| 196 | return h.boolProxyCall(proxy_trap_preventExtensions, target) |
| 197 | } |
| 198 | |
| 199 | func (h *jsProxyHandler) getOwnPropertyDescriptorStr(target *Object, prop unistring.String) (Value, bool) { |
| 200 | return h.proxyCall(proxy_trap_getOwnPropertyDescriptor, target, stringValueFromRaw(prop)) |
nothing calls this directly
no test coverage detected