(name unistring.String, desc PropertyDescriptor, throw bool)
| 393 | } |
| 394 | |
| 395 | func (o *dynamicObject) defineOwnPropertyStr(name unistring.String, desc PropertyDescriptor, throw bool) bool { |
| 396 | if o.checkDynamicObjectPropertyDescr(name, desc, throw) { |
| 397 | return o._set(name.String(), desc.Value, throw) |
| 398 | } |
| 399 | return false |
| 400 | } |
| 401 | |
| 402 | func (o *dynamicObject) defineOwnPropertyIdx(name valueInt, desc PropertyDescriptor, throw bool) bool { |
| 403 | if o.checkDynamicObjectPropertyDescr(name, desc, throw) { |
nothing calls this directly
no test coverage detected