(name unistring.String, receiver Value)
| 95 | } |
| 96 | |
| 97 | func (a *sparseArrayObject) getStr(name unistring.String, receiver Value) Value { |
| 98 | return a.getStrWithOwnProp(a.getOwnPropStr(name), name, receiver) |
| 99 | } |
| 100 | |
| 101 | func (a *sparseArrayObject) getIdx(idx valueInt, receiver Value) Value { |
| 102 | prop := a.getOwnPropIdx(idx) |
nothing calls this directly
no test coverage detected