10 lines
163 B
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
|
||
|
}
|