12 references to LeavingRegions
Microsoft.CodeAnalysis (1)
Operations\ControlFlowBranch.cs (1)
138ImmutableArray<ControlFlowRegion> leavingRegions = LeavingRegions;
Microsoft.CodeAnalysis.CodeStyle (1)
SymbolUsageAnalysis.DataFlowAnalyzer.cs (1)
177foreach (var region in branch.LeavingRegions)
Microsoft.CodeAnalysis.Test.Utilities (9)
Compilation\ControlFlowGraphVerifier.cs (9)
471if (block.ConditionalSuccessor != null && block.ConditionalSuccessor.LeavingRegions.Length > regions.Count) 474regions.AddRange(block.ConditionalSuccessor.LeavingRegions); 477if (block.FallThroughSuccessor.LeavingRegions.Length > regions.Count) 480regions.AddRange(block.FallThroughSuccessor.LeavingRegions); 759foreach (ControlFlowRegion region in branch.LeavingRegions) 1599Assert.Empty(branch.LeavingRegions); 1616if (!branch.LeavingRegions.IsEmpty) 1618appendLine($" Leaving:" + buildList(branch.LeavingRegions)); 1619foreach (ControlFlowRegion r in branch.LeavingRegions)
Microsoft.CodeAnalysis.Workspaces (1)
SymbolUsageAnalysis.DataFlowAnalyzer.cs (1)
177foreach (var region in branch.LeavingRegions)