(all bool, _ []Value)
| 1015 | } |
| 1016 | |
| 1017 | func (p *proxyObject) stringKeys(all bool, _ []Value) []Value { // we can assume accum is empty |
| 1018 | var keys []Value |
| 1019 | if vals, ok := p.proxyOwnKeys(); ok { |
| 1020 | keys = vals |
| 1021 | } else { |
| 1022 | keys = p.target.self.stringKeys(true, nil) |
| 1023 | } |
| 1024 | |
| 1025 | return p.filterKeys(keys, all, false) |
| 1026 | } |
| 1027 | |
| 1028 | func (p *proxyObject) symbols(all bool, accum []Value) []Value { |
| 1029 | var symbols []Value |
no test coverage detected