()
| 472 | } |
| 473 | |
| 474 | func (i *dynamicObjectPropIter) next() (propIterItem, iterNextFunc) { |
| 475 | for i.idx < len(i.propNames) { |
| 476 | name := i.propNames[i.idx] |
| 477 | i.idx++ |
| 478 | if i.o.d.Has(name) { |
| 479 | return propIterItem{name: newStringValue(name), enumerable: _ENUM_TRUE}, i.next |
| 480 | } |
| 481 | } |
| 482 | return propIterItem{}, nil |
| 483 | } |
| 484 | |
| 485 | func (o *dynamicObject) iterateStringKeys() iterNextFunc { |
| 486 | keys := o.d.Keys() |
nothing calls this directly
no test coverage detected