github.com/jhump/golang-x-tools@v0.0.0-20220218190644-4958d6d39439/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