(p unistring.String, receiver Value)
| 55 | } |
| 56 | |
| 57 | func (d *destructKeyedSource) getStr(p unistring.String, receiver Value) Value { |
| 58 | d.recordKey(stringValueFromRaw(p)) |
| 59 | return d.w().getStr(p, receiver) |
| 60 | } |
| 61 | |
| 62 | func (d *destructKeyedSource) getIdx(p valueInt, receiver Value) Value { |
| 63 | d.recordKey(p.toString()) |
nothing calls this directly
no test coverage detected