(target *Object, prop *Symbol, desc PropertyDescriptor)
| 217 | } |
| 218 | |
| 219 | func (h *jsProxyHandler) definePropertySym(target *Object, prop *Symbol, desc PropertyDescriptor) (bool, bool) { |
| 220 | return h.boolProxyCall(proxy_trap_defineProperty, target, prop, desc.toValue(h.handler.runtime)) |
| 221 | } |
| 222 | |
| 223 | func (h *jsProxyHandler) hasStr(target *Object, prop unistring.String) (bool, bool) { |
| 224 | return h.boolProxyCall(proxy_trap_has, target, stringValueFromRaw(prop)) |
nothing calls this directly
no test coverage detected