3 writes to _currentBuffer
Microsoft.CodeAnalysis.Workspaces (3)
Differencing\LongestCommonSubsequence.cs (3)
150
_currentBuffer
= _firstBuffer = bufferPool.Allocate();
161
_currentBuffer
= _currentBuffer.Next ?? new VBuffer(_currentBuffer);
189
_currentBuffer
= null;
5 references to _currentBuffer
Microsoft.CodeAnalysis.Workspaces (5)
Differencing\LongestCommonSubsequence.cs (5)
157
if (depth >
_currentBuffer
.MaxDepth)
161
_currentBuffer =
_currentBuffer
.Next ?? new VBuffer(
_currentBuffer
);
164
return
_currentBuffer
.GetVArray(depth);
169
var buffer =
_currentBuffer
;