xgo/compiler/source/pos.go

10 lines
102 B
Go
Raw Normal View History

package source
2019-01-09 10:17:42 +03:00
type Pos int
const NoPos Pos = 0
func (p Pos) IsValid() bool {
return p != NoPos
}