(u unistring.String)
| 652 | } |
| 653 | |
| 654 | func (a *dynamicArray) hasPropertyStr(u unistring.String) bool { |
| 655 | if a.hasOwnPropertyStr(u) { |
| 656 | return true |
| 657 | } |
| 658 | if proto := a.prototype; proto != nil { |
| 659 | return proto.self.hasPropertyStr(u) |
| 660 | } |
| 661 | return false |
| 662 | } |
| 663 | |
| 664 | func (a *dynamicArray) hasPropertyIdx(idx valueInt) bool { |
| 665 | if a.hasOwnPropertyIdx(idx) { |
nothing calls this directly
no test coverage detected