()
| 258 | } |
| 259 | |
| 260 | func (i *stringPropIter) next() (propIterItem, iterNextFunc) { |
| 261 | if i.idx < i.length { |
| 262 | name := strconv.Itoa(i.idx) |
| 263 | i.idx++ |
| 264 | return propIterItem{name: asciiString(name), enumerable: _ENUM_TRUE}, i.next |
| 265 | } |
| 266 | |
| 267 | return i.obj.baseObject.iterateStringKeys()() |
| 268 | } |
| 269 | |
| 270 | func (s *stringObject) iterateStringKeys() iterNextFunc { |
| 271 | return (&stringPropIter{ |
nothing calls this directly
no test coverage detected