Remove unused constant and fix magic number

pull/143/head
Pagran 5 years ago
parent c3bee46a26
commit cf77fcf987

@ -13,10 +13,6 @@ import (
)
const (
// PosMax is the largest line or column value that can be represented without loss.
// Source: https://go.googlesource.com/go/+/refs/heads/master/src/cmd/compile/internal/syntax/pos.go#11
PosMax = 1 << 30
// PosMin is the smallest correct value for the line number.
// Source: https://go.googlesource.com/go/+/refs/heads/master/src/cmd/compile/internal/syntax/parser_test.go#229
PosMin = 1
@ -99,7 +95,7 @@ func transformLineInfo(file *ast.File) ([]string, *ast.File) {
return true
}
comment := &ast.Comment{Text: fmt.Sprintf("//line %c.go:%d", nameCharset[mathrand.Intn(len(nameCharset))], 1+newLines[funcCounter])}
comment := &ast.Comment{Text: fmt.Sprintf("//line %c.go:%d", nameCharset[mathrand.Intn(len(nameCharset))], PosMin+newLines[funcCounter])}
funcDecl.Doc = prependComment(funcDecl.Doc, comment)
funcCounter++
return true

Loading…
Cancel
Save