1 implementation of FirstBlock
ILLink.RoslynAnalyzer (1)
DataFlow\ControlFlowGraphProxy.cs (1)
231
public BlockProxy
FirstBlock
(RegionProxy region) =>
4 references to FirstBlock
ILLink.RoslynAnalyzer (4)
src\tools\illink\src\ILLink.Shared\DataFlow\ForwardDataFlowAnalysis.cs (4)
249
bool isTryStart = isTryBlock && block.Equals (cfg.
FirstBlock
(tryOrCatchOrFilterRegion!));
251
bool isCatchStartWithoutFilter = isCatchBlock && block.Equals (cfg.
FirstBlock
(tryOrCatchOrFilterRegion!)) && !cfg.HasFilter (tryOrCatchOrFilterRegion!);
253
bool isFilterStart = isFilterBlock && block.Equals (cfg.
FirstBlock
(tryOrCatchOrFilterRegion!));
258
bool isFinallyStart = isFinallyBlock && block.Equals (cfg.
FirstBlock
(finallyRegion!));