A ReaderOption is any type that can apply a configuration to a [Reader].
| 13 | DebugFunc func(string) |
| 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. |
| 20 | Reader struct { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…