(p unistring.String, receiver Value)
| 181 | } |
| 182 | |
| 183 | func (o *baseDynamicObject) getParentStr(p unistring.String, receiver Value) Value { |
| 184 | if proto := o.prototype; proto != nil { |
| 185 | if receiver == nil { |
| 186 | return proto.self.getStr(p, o.val) |
| 187 | } |
| 188 | return proto.self.getStr(p, receiver) |
| 189 | } |
| 190 | return nil |
| 191 | } |
| 192 | |
| 193 | func (o *dynamicObject) getStr(p unistring.String, receiver Value) Value { |
| 194 | prop := o.d.Get(p.String()) |