(name unistring.String)
| 855 | } |
| 856 | |
| 857 | func (a *typedArrayObject) hasPropertyStr(name unistring.String) bool { |
| 858 | idx, ok := strToIntNum(name) |
| 859 | if ok { |
| 860 | return a._hasIdx(idx) |
| 861 | } |
| 862 | if idx == 0 { |
| 863 | return false |
| 864 | } |
| 865 | return a.baseObject.hasPropertyStr(name) |
| 866 | } |
| 867 | |
| 868 | func (a *typedArrayObject) hasPropertyIdx(idx valueInt) bool { |
| 869 | return a.hasOwnPropertyIdx(idx) |
nothing calls this directly
no test coverage detected