(target *Object, prop unistring.String)
| 257 | } |
| 258 | |
| 259 | func (h *jsProxyHandler) deleteStr(target *Object, prop unistring.String) (bool, bool) { |
| 260 | return h.boolProxyCall(proxy_trap_deleteProperty, target, stringValueFromRaw(prop)) |
| 261 | } |
| 262 | |
| 263 | func (h *jsProxyHandler) deleteIdx(target *Object, prop valueInt) (bool, bool) { |
| 264 | return h.boolProxyCall(proxy_trap_deleteProperty, target, prop.toString()) |
nothing calls this directly
no test coverage detected