------------------------------------------------------------------------- out_buffers Temporary structure for writing autocomplete response. ------------------------------------------------------------------------- fields must be exported for RPC
| 23 | |
| 24 | // fields must be exported for RPC |
| 25 | type candidate struct { |
| 26 | Name string |
| 27 | Type string |
| 28 | Class decl_class |
| 29 | Package string |
| 30 | } |
| 31 | |
| 32 | type out_buffers struct { |
| 33 | tmpbuf *bytes.Buffer |
nothing calls this directly
no outgoing calls
no test coverage detected