()
| 199 | } |
| 200 | |
| 201 | func (a *arrayObject) getLengthProp() *valueProperty { |
| 202 | a.lengthProp.value = intToValue(int64(a.length)) |
| 203 | return &a.lengthProp |
| 204 | } |
| 205 | |
| 206 | func (a *arrayObject) setOwnIdx(idx valueInt, val Value, throw bool) bool { |
| 207 | if i := toIdx(idx); i != math.MaxUint32 { |
no test coverage detected