(all bool, accum []Value)
| 306 | } |
| 307 | |
| 308 | func (o *objectGoArrayReflect) stringKeys(all bool, accum []Value) []Value { |
| 309 | for i := 0; i < o.fieldsValue.Len(); i++ { |
| 310 | accum = append(accum, asciiString(strconv.Itoa(i))) |
| 311 | } |
| 312 | |
| 313 | return o.objectGoReflect.stringKeys(all, accum) |
| 314 | } |
| 315 | |
| 316 | func (o *objectGoArrayReflect) iterateStringKeys() iterNextFunc { |
| 317 | return (&goArrayReflectPropIter{ |
nothing calls this directly
no test coverage detected