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