()
| 186 | } |
| 187 | |
| 188 | func (err TaskfileCycleError) Error() string { |
| 189 | return fmt.Sprintf("task: include cycle detected between %s <--> %s", |
| 190 | filepath.ToSlash(err.Source), |
| 191 | filepath.ToSlash(err.Destination), |
| 192 | ) |
| 193 | } |
| 194 | |
| 195 | func (err TaskfileCycleError) Code() int { |
| 196 | return CodeTaskfileCycle |
nothing calls this directly
no outgoing calls
no test coverage detected