1 instantiation of LexerCache
Microsoft.CodeAnalysis.CSharp (1)
Parser\LexerCache.cs (1)
16private static readonly ObjectPool<LexerCache> s_lexerCachePool = new ObjectPool<LexerCache>(() => new LexerCache());
5 references to LexerCache
Microsoft.CodeAnalysis.CSharp (5)
Parser\Lexer.cs (2)
82private readonly LexerCache _cache; 127_cache = LexerCache.GetInstance();
Parser\LexerCache.cs (3)
16private static readonly ObjectPool<LexerCache> s_lexerCachePool = new ObjectPool<LexerCache>(() => new LexerCache()); 50public static LexerCache GetInstance()