1 instantiation of VStack
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\LongestCommonSubsequence.cs (1)
237
=>
new
(s_pool);
7 references to VStack
Microsoft.CodeAnalysis.Workspaces (7)
Differencing\LongestCommonSubsequence.cs (7)
28
/// Underlying storage for <see cref="VArray"/>s allocated on <see cref="
VStack
"/>.
40
/// We pool a few of these linked buffers on <see cref="
VStack
"/> to conserve allocations.
236
protected static
VStack
CreateStack()
250
var
stack = ComputeEditPaths(oldSequence, oldLength, newSequence, newLength);
303
var
stack = ComputeEditPaths(oldSequence, oldLength, newSequence, newLength);
435
private
VStack
ComputeEditPaths(TSequence oldSequence, int oldLength, TSequence newSequence, int newLength)
440
var
stack = CreateStack();