1 write to _branchesOutOf
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\ExitPointsWalker.cs (1)
27
_branchesOutOf
= ArrayBuilder<StatementSyntax>.GetInstance();
5 references to _branchesOutOf
Microsoft.CodeAnalysis.CSharp (5)
FlowAnalysis\ExitPointsWalker.cs (5)
32
if (
_branchesOutOf
!= null)
34
_branchesOutOf
.Free();
66
_branchesOutOf
.Sort((x, y) => x.SpanStart - y.SpanStart);
67
return
_branchesOutOf
.ToImmutable();
150
_branchesOutOf
.Add((StatementSyntax)pending.Branch.Syntax);