Skip to content

Commit

Permalink
doAll.Invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsa committed Apr 28, 2015
1 parent dc95070 commit 7c8e472
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion do_all.go
Expand Up @@ -45,5 +45,9 @@ func (a *doAll) SetSignature(signature reflect.Type) (err error) {
}

func (a *doAll) Invoke(methodArgs []interface{}) (rets []interface{}) {
panic("TODO")
for _, w := range a.wrapped {
rets = w.Invoke(methodArgs)
}

return
}

0 comments on commit 7c8e472

Please sign in to comment.