This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/parser/cache.go

12 lines
303 B
Go

package parser
// cacheItem stores an item of the parser cache.
type cacheItem struct {
tree SyntaxTree
skimmed bool
}
// cache stores all modules that have been parsed so far. They are indexed with
// their full path on the filesystem, starting with '/'.
var cache = make(map[string] cacheItem)