2 instantiations of BoundIsPatternExpression
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Patterns.cs (1)
126return new BoundIsPatternExpression(
Generated\BoundNodes.xml.Generated.cs (1)
7979var result = new BoundIsPatternExpression(this.Syntax, expression, pattern, isNegated, reachabilityDecisionDag, whenTrueLabel, whenFalseLabel, type, this.HasErrors);
21 references to BoundIsPatternExpression
Microsoft.CodeAnalysis.CSharp (21)
Binder\RefSafetyAnalysis.cs (1)
555public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node)
CodeGen\Optimizer.cs (1)
1393public override BoundNode VisitIsPatternExpression(BoundIsPatternExpression node)
FlowAnalysis\AbstractFlowPass.cs (1)
921public override BoundNode VisitIsPatternExpression(BoundIsPatternExpression node)
FlowAnalysis\NullableWalker_Patterns.cs (1)
1053public override BoundNode VisitIsPatternExpression(BoundIsPatternExpression node)
Generated\BoundNodes.xml.Generated.cs (10)
7975public BoundIsPatternExpression Update(BoundExpression expression, BoundPattern pattern, bool isNegated, BoundDecisionDag reachabilityDecisionDag, LabelSymbol whenTrueLabel, LabelSymbol whenFalseLabel, TypeSymbol? type) 7979var result = new BoundIsPatternExpression(this.Syntax, expression, pattern, isNegated, reachabilityDecisionDag, whenTrueLabel, whenFalseLabel, type, this.HasErrors); 9249return VisitIsPatternExpression((BoundIsPatternExpression)node, arg); 9512public virtual R VisitIsPatternExpression(BoundIsPatternExpression node, A arg) => this.DefaultVisit(node, arg); 9748public virtual BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node) => this.DefaultVisit(node); 10675public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node) 12045public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node) 14691public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node) 14696BoundIsPatternExpression updatedNode; 16894public override TreeDumperNode VisitIsPatternExpression(BoundIsPatternExpression node, object? arg) => new TreeDumperNode("isPatternExpression", null, new TreeDumperNode[]
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
987public override BoundNode VisitIsPatternExpression(BoundIsPatternExpression node)
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (4)
15public override BoundNode VisitIsPatternExpression(BoundIsPatternExpression node) 109internal BoundExpression LowerGeneralIsPattern(BoundIsPatternExpression node, BoundDecisionDag decisionDag) 158public IsPatternExpressionLinearLocalRewriter(BoundIsPatternExpression node, LocalRewriter localRewriter) 219BoundIsPatternExpression isPatternExpression,
Operations\CSharpOperationFactory.cs (2)
251return CreateBoundIsPatternExpressionOperation((BoundIsPatternExpression)boundNode); 2771private IIsPatternOperation CreateBoundIsPatternExpressionOperation(BoundIsPatternExpression boundIsPatternExpression)