11 references to _lruList
Microsoft.CodeAnalysis.EditorFeatures (11)
Classification\Syntactic\SyntacticClassificationTaggerProvider.ClassifiedLineCache.cs (11)
79
/// Mapping from span to the corresponding linked list node in <see cref="
_lruList
"/>. Allows us to quickly
98
foreach (var spanAndClassifiedSpans in
_lruList
)
101
_lruList
.Clear();
124
_lruList
.Remove(node);
125
_lruList
.AddLast(node);
155
_lruList
.AddLast(node);
158
Contract.ThrowIfTrue(
_lruList
.Count > CacheSize);
159
Contract.ThrowIfTrue(
_lruList
.Count != _spanToLruNode.Count);
164
if (
_lruList
.Count < CacheSize)
174
var firstNode =
_lruList
.First;
176
_lruList
.RemoveFirst();