(prop string)
| 108 | } |
| 109 | |
| 110 | func (v *VM) GetValue(prop string) (value *Value, e error) { |
| 111 | vv, e := v.o.Get(prop) |
| 112 | return newValue(v, vv), e |
| 113 | } |
| 114 | |
| 115 | func (v *VM) EncodeJSONValue(value *Value) ([]byte, error) { |
| 116 | encoded, e := v.o.Call("JSON.stringify", nil, value.v) |
no test coverage detected