Skip to content

Commit 15412b3

Browse files
authored
fix: invalid position when missing EOL (#5279)
1 parent 7c9d2f4 commit 15412b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/goanalysis/position.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func GetFilePositionFor(fset *token.FileSet, p token.Pos) token.Position {
3737
func EndOfLinePos(f *token.File, line int) token.Pos {
3838
var end token.Pos
3939

40-
if line == f.LineCount() {
40+
if line >= f.LineCount() {
4141
// missing newline at the end of the file
4242
end = f.Pos(f.Size())
4343
} else {

pkg/golinters/gofumpt/testdata/gofumpt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import "fmt"
55

66
func GofumptNewLine() {
77
fmt.Println( "foo" ) // want "File is not properly formatted"
8-
}
8+
} // want "File is not properly formatted"

0 commit comments

Comments
 (0)