mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
13 lines
239 B
Go
13 lines
239 B
Go
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
|
|
}
|