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