(args *Args_auto_complete, reply *Reply_auto_complete)
| 23 | } |
| 24 | |
| 25 | func (r *RPC) RPC_auto_complete(args *Args_auto_complete, reply *Reply_auto_complete) error { |
| 26 | reply.Arg0, reply.Arg1 = server_auto_complete(args.Arg0, args.Arg1, args.Arg2, args.Arg3) |
| 27 | return nil |
| 28 | } |
| 29 | func 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 |
nothing calls this directly
no test coverage detected