(name unistring.String, throw bool)
| 733 | } |
| 734 | |
| 735 | func (p *proxyObject) deleteStr(name unistring.String, throw bool) bool { |
| 736 | target := p.target |
| 737 | if v, ok := p.checkHandler().deleteStr(target, name); ok { |
| 738 | p.proxyDeleteCheck(v, target.self.getOwnPropStr(name), name, target, throw) |
| 739 | return v |
| 740 | } |
| 741 | |
| 742 | return target.self.deleteStr(name, throw) |
| 743 | } |
| 744 | |
| 745 | func (p *proxyObject) deleteIdx(idx valueInt, throw bool) bool { |
| 746 | target := p.target |
nothing calls this directly
no test coverage detected