3 overrides of Scan
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
132protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
FlowAnalysis\DefiniteAssignment.cs (1)
330protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
FlowAnalysis\NullableWalker.cs (1)
593protected override ImmutableArray<PendingBranch> Scan(ref bool badRegion)
4 references to Scan
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\AbstractFlowPass.cs (1)
446returns = this.Scan(ref badRegion);
FlowAnalysis\ControlFlowPass.cs (1)
135var result = base.Scan(ref badRegion);
FlowAnalysis\DefiniteAssignment.cs (1)
378ImmutableArray<PendingBranch> pendingReturns = base.Scan(ref badRegion);
FlowAnalysis\NullableWalker.cs (1)
620ImmutableArray<PendingBranch> pendingReturns = base.Scan(ref badRegion);