(p unistring.String, v, receiver Value, throw bool)
| 288 | } |
| 289 | |
| 290 | func (o *baseDynamicObject) setParentForeignStr(p unistring.String, v, receiver Value, throw bool) (res bool, handled bool) { |
| 291 | if proto := o.prototype; proto != nil { |
| 292 | if receiver != proto { |
| 293 | return proto.self.setForeignStr(p, v, receiver, throw) |
| 294 | } |
| 295 | return proto.self.setOwnStr(p, v, throw), true |
| 296 | } |
| 297 | return false, false |
| 298 | } |
| 299 | |
| 300 | func (o *dynamicObject) setForeignStr(p unistring.String, v, receiver Value, throw bool) (res bool, handled bool) { |
| 301 | prop := p.String() |
no test coverage detected