Signed-off-by: Vicent Marti <vmg@strn.cat>
This commit is contained in:
Vicent Marti 2022-04-11 18:18:12 +02:00
Родитель 4f77191f35
Коммит 498c4655b1
1 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@ -118,13 +118,11 @@ func (r *Rewriter) replaceAstfmtCalls(cursor *astutil.Cursor) bool {
}
func (r *Rewriter) methodName(n *ast.CallExpr) string {
s, ok := n.Fun.(*ast.SelectorExpr)
if !ok {
return ""
}
id := s.Sel
if id != nil && !r.pkg.TypesInfo.Types[id].IsType() {
return id.Name
if call, ok := n.Fun.(*ast.SelectorExpr); ok {
id := call.Sel
if id != nil && !r.pkg.TypesInfo.Types[id].IsType() {
return id.Name
}
}
return ""
}