about summary refs log tree commit diff
path: root/pkg/libs/source/loc.go
blob: 3089d3bd565e51252e695f02ea3043d51ad03e4f (plain)
1
2
3
4
5
6
7
8
9
10
package source

type Loc struct {
	Row int
	Col int
}

func NewLoc(row, col int) Loc {
	return Loc{row, col}
}