diff --git a/line_obfuscator.go b/line_obfuscator.go index e5ff89c..2ccf244 100644 --- a/line_obfuscator.go +++ b/line_obfuscator.go @@ -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