(idx valueInt)
| 567 | } |
| 568 | |
| 569 | func (p *proxyObject) getOwnPropIdx(idx valueInt) Value { |
| 570 | target := p.target |
| 571 | if v, ok := p.checkHandler().getOwnPropertyDescriptorIdx(target, idx); ok { |
| 572 | return p.proxyGetOwnPropertyDescriptor(target.self.getOwnPropIdx(idx), target, v, idx) |
| 573 | } |
| 574 | |
| 575 | return target.self.getOwnPropIdx(idx) |
| 576 | } |
| 577 | |
| 578 | func (p *proxyObject) getOwnPropSym(s *Symbol) Value { |
| 579 | target := p.target |
no test coverage detected