| 17 | ) |
| 18 | |
| 19 | type TaskSequential struct { |
| 20 | *TaskBase |
| 21 | closed bool |
| 22 | tasks []Task |
| 23 | runners []TaskRunner |
| 24 | } |
| 25 | |
| 26 | func NewTaskSequential(ctx *plan.Context) *TaskSequential { |
| 27 | st := &TaskSequential{ |
nothing calls this directly
no outgoing calls
no test coverage detected