(text string)
| 47 | } |
| 48 | |
| 49 | func (f *ASCIIFormatter) applyReference(text string) string { |
| 50 | if f != nil && f.FormatReference != nil { |
| 51 | return f.FormatReference(text) |
| 52 | } |
| 53 | return text |
| 54 | } |
| 55 | |
| 56 | // Graph represents a task dependency graph |
| 57 | type Graph struct { |