()
| 7 | } |
| 8 | |
| 9 | func (l *Location) DeepCopy() *Location { |
| 10 | if l == nil { |
| 11 | return nil |
| 12 | } |
| 13 | return &Location{ |
| 14 | Line: l.Line, |
| 15 | Column: l.Column, |
| 16 | Taskfile: l.Taskfile, |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected