(x interface{})
| 28 | } |
| 29 | |
| 30 | func nonAddressableValueOf(x interface{}) value { |
| 31 | return value{val: reflect.ValueOf(x)} |
| 32 | } |
| 33 | |
| 34 | func valueOf(x interface{}) value { |
| 35 | return value{val: reflect.ValueOf(x).Elem()} |
no outgoing calls
no test coverage detected
searching dependent graphs…