------------------------------------------------------------------------- daemon -------------------------------------------------------------------------
| 52 | //------------------------------------------------------------------------- |
| 53 | |
| 54 | type daemon struct { |
| 55 | listener net.Listener |
| 56 | cmd_in chan int |
| 57 | autocomplete *auto_complete_context |
| 58 | pkgcache package_cache |
| 59 | declcache *decl_cache |
| 60 | context package_lookup_context |
| 61 | } |
| 62 | |
| 63 | func new_daemon(network, address string) *daemon { |
| 64 | var err error |
nothing calls this directly
no outgoing calls
no test coverage detected