(p unistring.String, receiver Value)
| 191 | } |
| 192 | |
| 193 | func (o *dynamicObject) getStr(p unistring.String, receiver Value) Value { |
| 194 | prop := o.d.Get(p.String()) |
| 195 | if prop == nil { |
| 196 | return o.getParentStr(p, receiver) |
| 197 | } |
| 198 | return prop |
| 199 | } |
| 200 | |
| 201 | func (o *baseDynamicObject) getParentIdx(p valueInt, receiver Value) Value { |
| 202 | if proto := o.prototype; proto != nil { |
nothing calls this directly
no test coverage detected