Browse Source

Stub CallSlice for Value

pull/4152/head
Akshay Pai 9 months ago
committed by Ayke
parent
commit
410aa0e0d8
  1. 4
      src/reflect/value.go

4
src/reflect/value.go

@ -2011,6 +2011,10 @@ func (v Value) Call(in []Value) []Value {
panic("unimplemented: (reflect.Value).Call()")
}
func (v Value) CallSlice(in []Value) []Value {
panic("unimplemented: (reflect.Value).CallSlice()")
}
func (v Value) Method(i int) Value {
panic("unimplemented: (reflect.Value).Method()")
}

Loading…
Cancel
Save