@@ -37,11 +37,8 @@ func filterOutShebang(data []byte) ([]byte, int) {
37
37
// Formatter interfaces
38
38
//-------------------------------------------------------------------------
39
39
40
- type FormatterEmpty interface {
40
+ type Formatter interface {
41
41
WriteEmpty ()
42
- }
43
-
44
- type FormatterCandidates interface {
45
42
WriteCandidates (names , types , classes []string , num int )
46
43
}
47
44
@@ -106,6 +103,9 @@ func (*VimFormatter) WriteCandidates(names, types, classes []string, num int) {
106
103
107
104
type EmacsFormatter struct {}
108
105
106
+ func (* EmacsFormatter ) WriteEmpty () {
107
+ }
108
+
109
109
func (* EmacsFormatter ) WriteCandidates (names , types , classes []string , num int ) {
110
110
for i := 0 ; i < len (names ); i ++ {
111
111
name := names [i ]
@@ -123,6 +123,9 @@ func (*EmacsFormatter) WriteCandidates(names, types, classes []string, num int)
123
123
124
124
type CSVFormatter struct {}
125
125
126
+ func (* CSVFormatter ) WriteEmpty () {
127
+ }
128
+
126
129
func (* CSVFormatter ) WriteCandidates (names , types , classes []string , num int ) {
127
130
for i := 0 ; i < len (names ); i ++ {
128
131
fmt .Printf ("%s,,%s,,%s\n " , classes [i ], names [i ], types [i ])
@@ -153,7 +156,7 @@ func (*JSONFormatter) WriteCandidates(names, types, classes []string, num int) {
153
156
154
157
//-------------------------------------------------------------------------
155
158
156
- func getFormatter () interface {} {
159
+ func getFormatter () Formatter {
157
160
switch * format {
158
161
case "vim" :
159
162
return new (VimFormatter )
@@ -260,15 +263,10 @@ func cmdAutoComplete(c *rpc.Client) {
260
263
formatter := getFormatter ()
261
264
names , types , classes , partial := Client_AutoComplete (c , file , filename , cursor )
262
265
if names == nil {
263
- if f , ok := formatter .(FormatterEmpty ); ok {
264
- f .WriteEmpty ()
265
- }
266
+ formatter .WriteEmpty ()
266
267
return
267
268
}
268
-
269
- if f , ok := formatter .(FormatterCandidates ); ok {
270
- f .WriteCandidates (names , types , classes , partial )
271
- }
269
+ formatter .WriteCandidates (names , types , classes , partial )
272
270
}
273
271
274
272
func cmdClose (c * rpc.Client ) {
0 commit comments