(target *Object, prop *Symbol, value Value, receiver Value)
| 253 | } |
| 254 | |
| 255 | func (h *jsProxyHandler) setSym(target *Object, prop *Symbol, value Value, receiver Value) (bool, bool) { |
| 256 | return h.boolProxyCall(proxy_trap_set, target, prop, value, receiver) |
| 257 | } |
| 258 | |
| 259 | func (h *jsProxyHandler) deleteStr(target *Object, prop unistring.String) (bool, bool) { |
| 260 | return h.boolProxyCall(proxy_trap_deleteProperty, target, stringValueFromRaw(prop)) |
nothing calls this directly
no test coverage detected