Empty is a line in the config file that contains only whitespace or comments.
| 610 | |
| 611 | // Empty is a line in the config file that contains only whitespace or comments. |
| 612 | type Empty struct { |
| 613 | Comment string |
| 614 | leadingSpace int // TODO handle spaces vs tabs. |
| 615 | position Position |
| 616 | } |
| 617 | |
| 618 | // Pos returns e's Position. |
| 619 | func (e *Empty) Pos() Position { |
nothing calls this directly
no outgoing calls
no test coverage detected