FilterOutNoDesc removes all tasks that do not contain a description.
(task *ast.Task)
| 597 | |
| 598 | // FilterOutNoDesc removes all tasks that do not contain a description. |
| 599 | func FilterOutNoDesc(task *ast.Task) bool { |
| 600 | return task.Desc == "" |
| 601 | } |
| 602 | |
| 603 | // FilterOutInternal removes all tasks that are marked as internal. |
| 604 | func FilterOutInternal(task *ast.Task) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…