(target *Object, prop unistring.String, value Value, receiver Value)
| 245 | } |
| 246 | |
| 247 | func (h *jsProxyHandler) setStr(target *Object, prop unistring.String, value Value, receiver Value) (bool, bool) { |
| 248 | return h.boolProxyCall(proxy_trap_set, target, stringValueFromRaw(prop), value, receiver) |
| 249 | } |
| 250 | |
| 251 | func (h *jsProxyHandler) setIdx(target *Object, prop valueInt, value Value, receiver Value) (bool, bool) { |
| 252 | return h.boolProxyCall(proxy_trap_set, target, prop.toString(), value, receiver) |
nothing calls this directly
no test coverage detected