(quotedArg string, hFileName string)
| 50 | } |
| 51 | |
| 52 | func (incCache *IncludesCache) AddIncludeResolve(quotedArg string, hFileName string) { |
| 53 | incCache.mu.Lock() |
| 54 | incCache.includesResolve[quotedArg] = hFileName |
| 55 | incCache.mu.Unlock() |
| 56 | } |
| 57 | |
| 58 | func (incCache *IncludesCache) GetHFileInfo(hFileName string) (hFileCached *includeCachedHFile, exists bool) { |
| 59 | incCache.mu.RLock() |