(*Reader)
| 14 | // A ReaderOption is any type that can apply a configuration to a [Reader]. |
| 15 | ReaderOption interface { |
| 16 | ApplyToReader(*Reader) |
| 17 | } |
| 18 | // A Reader will recursively read Taskfiles from a given [Node] and build a |
| 19 | // [ast.TaskRC] from them. |
nothing calls this directly
no outgoing calls
no test coverage detected