go/types: expose IsInterface predicate, eliminating 6 copies

Change-Id: I3704d7bd7a11f691c66556c1b77ef79a503d2fe9
Reviewed-on: https://go-review.googlesource.com/2173
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/refactor/satisfy/find.go b/refactor/satisfy/find.go
index 9770a02..20fb288 100644
--- a/refactor/satisfy/find.go
+++ b/refactor/satisfy/find.go
@@ -701,7 +701,4 @@
 
 func unparen(e ast.Expr) ast.Expr { return astutil.Unparen(e) }
 
-func isInterface(T types.Type) bool {
-	_, ok := T.Underlying().(*types.Interface)
-	return ok
-}
+func isInterface(T types.Type) bool { return types.IsInterface(T) }