(target *Object, prop *Symbol, receiver Value)
| 241 | } |
| 242 | |
| 243 | func (h *jsProxyHandler) getSym(target *Object, prop *Symbol, receiver Value) (Value, bool) { |
| 244 | return h.proxyCall(proxy_trap_get, target, prop, receiver) |
| 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) |