(target *Object, prop unistring.String)
| 221 | } |
| 222 | |
| 223 | func (h *jsProxyHandler) hasStr(target *Object, prop unistring.String) (bool, bool) { |
| 224 | return h.boolProxyCall(proxy_trap_has, target, stringValueFromRaw(prop)) |
| 225 | } |
| 226 | |
| 227 | func (h *jsProxyHandler) hasIdx(target *Object, prop valueInt) (bool, bool) { |
| 228 | return h.boolProxyCall(proxy_trap_has, target, prop.toString()) |
nothing calls this directly
no test coverage detected