()
| 18 | } |
| 19 | |
| 20 | func (step *Step) NewTask() (task *Task) { |
| 21 | task = &Task{Step: step, Id: len(step.Tasks)} |
| 22 | step.Tasks = append(step.Tasks, task) |
| 23 | return |
| 24 | } |
| 25 | |
| 26 | // source ->w:ds:r -> task -> w:ds:r |
| 27 | // source close next ds' w chan |
no outgoing calls
no test coverage detected