2 instantiations of BoundIsPatternExpression
Microsoft.CodeAnalysis.CSharp (2)
25 references to BoundIsPatternExpression
Microsoft.CodeAnalysis.CSharp (21)
Generated\BoundNodes.xml.Generated.cs (10)
8117public BoundIsPatternExpression Update(BoundExpression expression, BoundPattern pattern, bool hasUnionMatching, bool isNegated, BoundDecisionDag reachabilityDecisionDag, LabelSymbol whenTrueLabel, LabelSymbol whenFalseLabel, TypeSymbol? type)
8121var result = new BoundIsPatternExpression(this.Syntax, expression, pattern, hasUnionMatching, isNegated, reachabilityDecisionDag, whenTrueLabel, whenFalseLabel, type, this.HasErrors);
9520return VisitIsPatternExpression((BoundIsPatternExpression)node, arg);
9790public virtual R VisitIsPatternExpression(BoundIsPatternExpression node, A arg) => this.DefaultVisit(node, arg);
10031public virtual BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node) => this.DefaultVisit(node);
10974public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node)
12507public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node)
15186public override BoundNode? VisitIsPatternExpression(BoundIsPatternExpression node)
15191BoundIsPatternExpression updatedNode;
17436public override TreeDumperNode VisitIsPatternExpression(BoundIsPatternExpression node, object? arg) => new TreeDumperNode("isPatternExpression", null, new TreeDumperNode[]
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Test.Utilities (2)