Skip to content

Commit 410aa0e

Browse files
akspiaykevl
authored andcommitted
Stub CallSlice for Value
1 parent c66836c commit 410aa0e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/reflect/value.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2011,6 +2011,10 @@ func (v Value) Call(in []Value) []Value {
20112011
panic("unimplemented: (reflect.Value).Call()")
20122012
}
20132013

2014+
func (v Value) CallSlice(in []Value) []Value {
2015+
panic("unimplemented: (reflect.Value).CallSlice()")
2016+
}
2017+
20142018
func (v Value) Method(i int) Value {
20152019
panic("unimplemented: (reflect.Value).Method()")
20162020
}

0 commit comments

Comments
 (0)