(u unistring.String)
| 334 | } |
| 335 | |
| 336 | func (o *dynamicObject) hasPropertyStr(u unistring.String) bool { |
| 337 | if o.hasOwnPropertyStr(u) { |
| 338 | return true |
| 339 | } |
| 340 | if proto := o.prototype; proto != nil { |
| 341 | return proto.self.hasPropertyStr(u) |
| 342 | } |
| 343 | return false |
| 344 | } |
| 345 | |
| 346 | func (o *dynamicObject) hasPropertyIdx(idx valueInt) bool { |
| 347 | if o.hasOwnPropertyIdx(idx) { |
nothing calls this directly
no test coverage detected