about summary refs log tree commit diff
path: root/pkg/lang/scanner/token/loc.go
blob: c4b073ab37dc3ced7d1b68978a384c7beda36e48 (plain)
1
2
3
4
5
6
package token

type Loc struct {
	Row int
	Col int
}