зеркало из https://github.com/github/vitess-gh.git
astfmtgen: refactor
Signed-off-by: Vicent Marti <vmg@strn.cat>
This commit is contained in:
Родитель
4f77191f35
Коммит
498c4655b1
|
@ -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 ""
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче