(idx valueInt)
| 662 | } |
| 663 | |
| 664 | func (a *dynamicArray) hasPropertyIdx(idx valueInt) bool { |
| 665 | if a.hasOwnPropertyIdx(idx) { |
| 666 | return true |
| 667 | } |
| 668 | if proto := a.prototype; proto != nil { |
| 669 | return proto.self.hasPropertyIdx(idx) |
| 670 | } |
| 671 | return false |
| 672 | } |
| 673 | |
| 674 | func (a *dynamicArray) _has(idx int) bool { |
| 675 | return idx >= 0 && idx < a.a.Len() |
nothing calls this directly
no test coverage detected