12345678910111213141516171819202122232425 |
- package ssh_config
-
- import "fmt"
-
-
-
-
-
-
- type Position struct {
- Line uint32
- Col uint16
- }
-
-
-
- func (p Position) String() string {
- return fmt.Sprintf("(%d, %d)", p.Line, p.Col)
- }
-
-
-
- func (p Position) Invalid() bool {
- return p.Line <= 0 || p.Col <= 0
- }
|