(s *Symbol)
| 576 | } |
| 577 | |
| 578 | func (p *proxyObject) getOwnPropSym(s *Symbol) Value { |
| 579 | target := p.target |
| 580 | if v, ok := p.checkHandler().getOwnPropertyDescriptorSym(target, s); ok { |
| 581 | return p.proxyGetOwnPropertyDescriptor(target.self.getOwnPropSym(s), target, v, s) |
| 582 | } |
| 583 | |
| 584 | return target.self.getOwnPropSym(s) |
| 585 | } |
| 586 | |
| 587 | func (p *proxyObject) proxyGetChecks(targetProp, trapResult Value, name fmt.Stringer) { |
| 588 | if targetDesc, ok := targetProp.(*valueProperty); ok { |
no test coverage detected