()
| 850 | } |
| 851 | |
| 852 | func (p *proxyObject) iterateKeys() iterNextFunc { |
| 853 | return (&proxyPropIter{ |
| 854 | p: p, |
| 855 | names: p.keys(true, nil), |
| 856 | }).next |
| 857 | } |
| 858 | |
| 859 | func (p *proxyObject) assertCallable() (call func(FunctionCall) Value, ok bool) { |
| 860 | if p.call != nil { |