implement TODO to use a name variable

Slightly simplifies the main chunk of code.
While here, improve the wording for when Go isn't installed correctly.
pull/486/head
Daniel Martí 3 years ago committed by Andrew LeFevre
parent 955c24856c
commit 345ecda999

@ -1451,8 +1451,8 @@ func (tf *transformer) transformGo(filename string, file *ast.File) *ast.File {
if !ok { if !ok {
return true return true
} }
// TODO(mvdan): use "name := node.Name" name := node.Name
if node.Name == "_" { if name == "_" {
return true // unnamed remains unnamed return true // unnamed remains unnamed
} }
obj := tf.info.ObjectOf(node) obj := tf.info.ObjectOf(node)
@ -1472,7 +1472,7 @@ func (tf *transformer) transformGo(filename string, file *ast.File) *ast.File {
// Note that "package mypkg" also denotes a nil object in Defs, // Note that "package mypkg" also denotes a nil object in Defs,
// and we don't want to treat that "mypkg" as a variable, // and we don't want to treat that "mypkg" as a variable,
// so avoid that case by checking the type of cursor.Parent. // so avoid that case by checking the type of cursor.Parent.
obj = types.NewVar(node.Pos(), tf.pkg, node.Name, nil) obj = types.NewVar(node.Pos(), tf.pkg, name, nil)
} else { } else {
return true return true
} }
@ -1578,7 +1578,7 @@ func (tf *transformer) transformGo(filename string, file *ast.File) *ast.File {
// packages result in different obfuscated names. // packages result in different obfuscated names.
strct := tf.fieldToStruct[obj] strct := tf.fieldToStruct[obj]
if strct == nil { if strct == nil {
panic("could not find for " + node.Name) panic("could not find for " + name)
} }
// TODO: We should probably strip field tags here. // TODO: We should probably strip field tags here.
// Do we need to do anything else to make a // Do we need to do anything else to make a
@ -1598,22 +1598,19 @@ func (tf *transformer) transformGo(filename string, file *ast.File) *ast.File {
if obj.Exported() && sign.Recv() != nil { if obj.Exported() && sign.Recv() != nil {
return true // might implement an interface return true // might implement an interface
} }
switch node.Name { switch name {
case "main", "init", "TestMain": case "main", "init", "TestMain":
return true // don't break them return true // don't break them
} }
if strings.HasPrefix(node.Name, "Test") && isTestSignature(sign) { if strings.HasPrefix(name, "Test") && isTestSignature(sign) {
return true // don't break tests return true // don't break tests
} }
default: default:
return true // we only want to rename the above return true // we only want to rename the above
} }
origName := node.Name node.Name = hashWith(hashToUse, name)
_ = origName // used for debug prints below debugf("%s %q hashed with %x… to %q", debugName, name, hashToUse[:4], node.Name)
node.Name = hashWith(hashToUse, node.Name)
debugf("%s %q hashed with %x… to %q", debugName, origName, hashToUse[:4], node.Name)
return true return true
} }
post := func(cursor *astutil.Cursor) bool { post := func(cursor *astutil.Cursor) bool {
@ -1976,11 +1973,11 @@ func fetchGoEnv() error {
"GOOS", "GOPRIVATE", "GOMOD", "GOVERSION", "GOCACHE", "GOOS", "GOPRIVATE", "GOMOD", "GOVERSION", "GOCACHE",
).CombinedOutput() ).CombinedOutput()
if err != nil { if err != nil {
fmt.Fprintf(os.Stderr, `Can't find Go toolchain: %v fmt.Fprintf(os.Stderr, `Can't find the Go toolchain: %v
This is likely due to go not being installed/setup correctly. This is likely due to Go not being installed/setup correctly.
How to install Go: https://go.dev/doc/install To install Go, see: https://go.dev/doc/install
`, err) `, err)
return errJustExit(1) return errJustExit(1)
} }

Loading…
Cancel
Save