| 501 | } |
| 502 | |
| 503 | type decl_cache struct { |
| 504 | cache map[string]*decl_file_cache |
| 505 | context *package_lookup_context |
| 506 | sync.Mutex |
| 507 | } |
| 508 | |
| 509 | func new_decl_cache(context *package_lookup_context) *decl_cache { |
| 510 | return &decl_cache{ |
nothing calls this directly
no outgoing calls
no test coverage detected