MCPcopy Create free account
hub / github.com/nsf/gocode / client_auto_complete

Function client_auto_complete

rpc.go:29–41  ·  view source on GitHub ↗
(cli *rpc.Client, Arg0 []byte, Arg1 string, Arg2 int, Arg3 go_build_context)

Source from the content-addressed store, hash-verified

27 return nil
28}
29func client_auto_complete(cli *rpc.Client, Arg0 []byte, Arg1 string, Arg2 int, Arg3 go_build_context) (c []candidate, d int) {
30 var args Args_auto_complete
31 var reply Reply_auto_complete
32 args.Arg0 = Arg0
33 args.Arg1 = Arg1
34 args.Arg2 = Arg2
35 args.Arg3 = Arg3
36 err := cli.Call("RPC.RPC_auto_complete", &args, &reply)
37 if err != nil {
38 panic(err)
39 }
40 return reply.Arg0, reply.Arg1
41}
42
43// wrapper for: server_close
44

Callers 1

cmd_auto_completeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected