()
| 836 | } |
| 837 | |
| 838 | func (p *proxyObject) iterateStringKeys() iterNextFunc { |
| 839 | return (&proxyPropIter{ |
| 840 | p: p, |
| 841 | names: p.stringKeys(true, nil), |
| 842 | }).next |
| 843 | } |
| 844 | |
| 845 | func (p *proxyObject) iterateSymbols() iterNextFunc { |
| 846 | return (&proxyPropIter{ |
nothing calls this directly
no test coverage detected