(s *Symbol, throw bool)
| 753 | } |
| 754 | |
| 755 | func (p *proxyObject) deleteSym(s *Symbol, throw bool) bool { |
| 756 | target := p.target |
| 757 | if v, ok := p.checkHandler().deleteSym(target, s); ok { |
| 758 | p.proxyDeleteCheck(v, target.self.getOwnPropSym(s), s, target, throw) |
| 759 | return v |
| 760 | } |
| 761 | |
| 762 | return target.self.deleteSym(s, throw) |
| 763 | } |
| 764 | |
| 765 | func (p *proxyObject) keys(all bool, _ []Value) []Value { |
| 766 | if v, ok := p.proxyOwnKeys(); ok { |
nothing calls this directly
no test coverage detected