(target *Object, prop unistring.String)
| 197 | } |
| 198 | |
| 199 | func (h *jsProxyHandler) getOwnPropertyDescriptorStr(target *Object, prop unistring.String) (Value, bool) { |
| 200 | return h.proxyCall(proxy_trap_getOwnPropertyDescriptor, target, stringValueFromRaw(prop)) |
| 201 | } |
| 202 | |
| 203 | func (h *jsProxyHandler) getOwnPropertyDescriptorIdx(target *Object, prop valueInt) (Value, bool) { |
| 204 | return h.proxyCall(proxy_trap_getOwnPropertyDescriptor, target, prop.toString()) |
nothing calls this directly
no test coverage detected