github.com/jd-ly/tools@v0.5.7/go/ssa/interp/testdata/src/reflect/reflect.go (about) 1 package reflect 2 3 type Type interface { 4 String() string 5 } 6 7 type Value struct { 8 } 9 10 func (Value) String() string 11 12 func SliceOf(Type) Type 13 14 func TypeOf(interface{}) Type 15 16 func ValueOf(interface{}) Value