(all bool, accum []Value)
| 928 | } |
| 929 | |
| 930 | func (a *typedArrayObject) stringKeys(all bool, accum []Value) []Value { |
| 931 | if accum == nil { |
| 932 | accum = make([]Value, 0, a.length) |
| 933 | } |
| 934 | for i := 0; i < a.length; i++ { |
| 935 | accum = append(accum, asciiString(strconv.Itoa(i))) |
| 936 | } |
| 937 | return a.baseObject.stringKeys(all, accum) |
| 938 | } |
| 939 | |
| 940 | type typedArrayPropIter struct { |
| 941 | a *typedArrayObject |
nothing calls this directly
no test coverage detected