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