(p unistring.String, v, receiver Value, throw bool)
| 298 | } |
| 299 | |
| 300 | func (o *dynamicObject) setForeignStr(p unistring.String, v, receiver Value, throw bool) (res bool, handled bool) { |
| 301 | prop := p.String() |
| 302 | if !o.d.Has(prop) { |
| 303 | return o.setParentForeignStr(p, v, receiver, throw) |
| 304 | } |
| 305 | return false, false |
| 306 | } |
| 307 | |
| 308 | func (o *baseDynamicObject) setParentForeignIdx(p valueInt, v, receiver Value, throw bool) (res bool, handled bool) { |
| 309 | if proto := o.prototype; proto != nil { |
nothing calls this directly
no test coverage detected