3 overrides of Scan
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
133protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
FlowAnalysis\DefiniteAssignment.cs (1)
329protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
FlowAnalysis\NullableWalker.cs (1)
578protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
4 references to Scan
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\AbstractFlowPass.cs (1)
447returns = this.Scan(ref badRegion);
FlowAnalysis\ControlFlowPass.cs (1)
136var result = base.Scan(ref badRegion);
FlowAnalysis\DefiniteAssignment.cs (1)
371ImmutableArray<PendingBranch> pendingReturns = base.Scan(ref badRegion);
FlowAnalysis\NullableWalker.cs (1)
600ImmutableArray<PendingBranch> pendingReturns = base.Scan(ref badRegion);