Skip to content

Commit

Permalink
Remove TODO marker
Browse files Browse the repository at this point in the history
  • Loading branch information
alrz committed Mar 5, 2024
1 parent fbe5cdf commit ef9b726
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Compilers/CSharp/Portable/FlowAnalysis/AbstractFlowPass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3015,6 +3015,14 @@ private void VisitConditionalAccess(BoundConditionalAccess node, out TLocalState

#nullable disable

public override BoundNode VisitLoweredIsPatternExpression(BoundLoweredIsPatternExpression node)
{
var initialState = this.State.Clone();
VisitStatements(node.Statements);
SetState(initialState);
return null;
}

public override BoundNode VisitLoweredConditionalAccess(BoundLoweredConditionalAccess node)
{
VisitRvalue(node.Receiver);
Expand All @@ -3039,14 +3047,6 @@ public override BoundNode VisitConditionalReceiver(BoundConditionalReceiver node
return null;
}

public override BoundNode VisitLoweredIsPatternExpression(BoundLoweredIsPatternExpression node)
{
var savedState = this.State.Clone();
VisitStatements(node.Statements);
SetState(savedState);
return null;
}

public override BoundNode VisitComplexConditionalReceiver(BoundComplexConditionalReceiver node)
{
var savedState = this.State.Clone();
Expand Down

0 comments on commit ef9b726

Please sign in to comment.