(target *Object, prop unistring.String, receiver Value)
| 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) |
| 237 | } |
| 238 | |
| 239 | func (h *jsProxyHandler) getIdx(target *Object, prop valueInt, receiver Value) (Value, bool) { |
| 240 | return h.proxyCall(proxy_trap_get, target, prop.toString(), receiver) |
nothing calls this directly
no test coverage detected