|
|
|
@ -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
|
|
|
|
|