blob: f8d3898c2d46e58ff3381799d79b7be7bce3f3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package parser
// Pos represents a position in the file set.
type Pos int
// NoPos represents an invalid position.
const NoPos Pos = 0
// IsValid returns true if the position is valid.
func (p Pos) IsValid() bool {
return p != NoPos
}
|