This repository has been archived on 2024-02-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
arf/file/location.go

10 lines
163 B
Go

package file
// Location represents a specific point in a file. It is used for error
// reporting.
type Location struct {
file *File
row int
column int
}