(name unistring.String)
| 558 | } |
| 559 | |
| 560 | func (p *proxyObject) getOwnPropStr(name unistring.String) Value { |
| 561 | target := p.target |
| 562 | if v, ok := p.checkHandler().getOwnPropertyDescriptorStr(target, name); ok { |
| 563 | return p.proxyGetOwnPropertyDescriptor(target.self.getOwnPropStr(name), target, v, name) |
| 564 | } |
| 565 | |
| 566 | return target.self.getOwnPropStr(name) |
| 567 | } |
| 568 | |
| 569 | func (p *proxyObject) getOwnPropIdx(idx valueInt) Value { |
| 570 | target := p.target |
no test coverage detected