(v reflect.Value)
| 26 | const debug = false |
| 27 | |
| 28 | func unbox(v reflect.Value) reflect.Value { |
| 29 | if v.Kind() == reflect.Interface { |
| 30 | return v.Elem() |
| 31 | } |
| 32 | return v |
| 33 | } |
| 34 | |
| 35 | // encode writes the value v to w, using the JDWP encoding scheme. |
| 36 | func (c *Connection) encode(w binary.Writer, v reflect.Value) error { |