(name unistring.String)
| 187 | } |
| 188 | |
| 189 | func (o *templatedObject) hasPropertyStr(name unistring.String) bool { |
| 190 | if o.val.self.hasOwnPropertyStr(name) { |
| 191 | return true |
| 192 | } |
| 193 | o.materialiseProto() |
| 194 | if o.prototype != nil { |
| 195 | return o.prototype.self.hasPropertyStr(name) |
| 196 | } |
| 197 | return false |
| 198 | } |
| 199 | |
| 200 | func (o *templatedObject) hasPropertySym(s *Symbol) bool { |
| 201 | if o.hasOwnPropertySym(s) { |
nothing calls this directly
no test coverage detected