(target *Object, prop *Symbol)
| 229 | } |
| 230 | |
| 231 | func (h *jsProxyHandler) hasSym(target *Object, prop *Symbol) (bool, bool) { |
| 232 | return h.boolProxyCall(proxy_trap_has, target, prop) |
| 233 | } |
| 234 | |
| 235 | func (h *jsProxyHandler) getStr(target *Object, prop unistring.String, receiver Value) (Value, bool) { |
| 236 | return h.proxyCall(proxy_trap_get, target, stringValueFromRaw(prop), receiver) |
nothing calls this directly
no test coverage detected