()
| 118 | } |
| 119 | |
| 120 | func (a *sparseArrayObject) getLengthProp() *valueProperty { |
| 121 | a.lengthProp.value = intToValue(int64(a.length)) |
| 122 | return &a.lengthProp |
| 123 | } |
| 124 | |
| 125 | func (a *sparseArrayObject) getOwnPropStr(name unistring.String) Value { |
| 126 | if idx := strToArrayIdx(name); idx != math.MaxUint32 { |
no test coverage detected