(name unistring.String)
| 495 | } |
| 496 | |
| 497 | func (p *proxyObject) hasOwnPropertyStr(name unistring.String) bool { |
| 498 | return p.getOwnPropStr(name) != nil |
| 499 | } |
| 500 | |
| 501 | func (p *proxyObject) hasOwnPropertyIdx(idx valueInt) bool { |
| 502 | return p.getOwnPropIdx(idx) != nil |
nothing calls this directly
no test coverage detected