(v Value)
| 239 | } |
| 240 | |
| 241 | func (r *objRef) init(v Value) { |
| 242 | if r.this != nil { |
| 243 | r.base.set(r.getKey(), v, r.this, r.strict) |
| 244 | } else { |
| 245 | r.base.setOwn(r.getKey(), v, r.strict) |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | func (r *objRef) refname() unistring.String { |
| 250 | return r.getKey().string() |