(s *Symbol)
| 483 | } |
| 484 | |
| 485 | func (p *proxyObject) hasPropertySym(s *Symbol) bool { |
| 486 | target := p.target |
| 487 | if b, ok := p.checkHandler().hasSym(target, s); ok { |
| 488 | if !b { |
| 489 | p.proxyHasChecks(target.self.getOwnPropSym(s), target, s) |
| 490 | } |
| 491 | return b |
| 492 | } |
| 493 | |
| 494 | return target.self.hasPropertySym(s) |
| 495 | } |
| 496 | |
| 497 | func (p *proxyObject) hasOwnPropertyStr(name unistring.String) bool { |
| 498 | return p.getOwnPropStr(name) != nil |
nothing calls this directly
no test coverage detected