(f func())
| 109 | } |
| 110 | |
| 111 | func (fc *funcContext) Delayed(f func()) { |
| 112 | fc.delayedOutput = fc.CatchOutput(0, f) |
| 113 | } |
| 114 | |
| 115 | // expandTupleArgs converts a function call which argument is a tuple returned |
| 116 | // by another function into a set of individual call arguments corresponding to |
no test coverage detected