3 writes to _currentBuffer
Microsoft.CodeAnalysis.Workspaces (3)
Differencing\LongestCommonSubsequence.cs (3)
129
_currentBuffer
= _firstBuffer = bufferPool.Allocate();
140
_currentBuffer
= _currentBuffer.Next ?? new VBuffer(_currentBuffer);
168
_currentBuffer
= null;
5 references to _currentBuffer
Microsoft.CodeAnalysis.Workspaces (5)
Differencing\LongestCommonSubsequence.cs (5)
136
if (depth >
_currentBuffer
.MaxDepth)
140
_currentBuffer =
_currentBuffer
.Next ?? new VBuffer(
_currentBuffer
);
143
return
_currentBuffer
.GetVArray(depth);
148
var buffer =
_currentBuffer
;