FilterOutInternal removes all tasks that are marked as internal.
(task *ast.Task)
| 602 | |
| 603 | // FilterOutInternal removes all tasks that are marked as internal. |
| 604 | func FilterOutInternal(task *ast.Task) bool { |
| 605 | return task.Internal |
| 606 | } |
| 607 | |
| 608 | func shouldRunOnCurrentPlatform(platforms []*ast.Platform) bool { |
| 609 | if len(platforms) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…