(context *package_lookup_context)
| 507 | } |
| 508 | |
| 509 | func new_decl_cache(context *package_lookup_context) *decl_cache { |
| 510 | return &decl_cache{ |
| 511 | cache: make(map[string]*decl_file_cache), |
| 512 | context: context, |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | func (c *decl_cache) get(filename string) *decl_file_cache { |
| 517 | c.Lock() |
no outgoing calls
no test coverage detected