MatchingTask represents a task that matches a given call. It includes the task itself and a list of wildcards that were matched.
| 34 | // MatchingTask represents a task that matches a given call. It includes the |
| 35 | // task itself and a list of wildcards that were matched. |
| 36 | type MatchingTask struct { |
| 37 | Task *ast.Task |
| 38 | Wildcards []string |
| 39 | } |
| 40 | |
| 41 | // Run runs Task |
| 42 | func (e *Executor) Run(ctx context.Context, calls ...*Call) error { |
nothing calls this directly
no outgoing calls
no test coverage detected