1 write to Pattern
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7958this.Pattern = pattern;
12 references to Pattern
Microsoft.CodeAnalysis.CSharp (12)
Binder\RefSafetyAnalysis.cs (1)
559this.Visit(node.Pattern);
BoundTree\BoundIsPatternExpression.cs (1)
16bool negated = this.Pattern.IsNegated(out var innerPattern);
FlowAnalysis\AbstractFlowPass.cs (2)
926Debug.Assert(node.Pattern is 931bool negated = node.Pattern.IsNegated(out var pattern);
FlowAnalysis\NullableWalker_Patterns.cs (2)
1056LearnFromAnyNullPatterns(node.Expression, node.Pattern); 1057VisitForRewriting(node.Pattern);
Generated\BoundNodes.xml.Generated.cs (5)
7977if (expression != this.Expression || pattern != this.Pattern || isNegated != this.IsNegated || reachabilityDecisionDag != this.ReachabilityDecisionDag || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(whenTrueLabel, this.WhenTrueLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(whenFalseLabel, this.WhenFalseLabel) || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10678this.Visit(node.Pattern); 12048BoundPattern pattern = (BoundPattern)this.Visit(node.Pattern); 14694BoundPattern pattern = (BoundPattern)this.Visit(node.Pattern); 16897new TreeDumperNode("pattern", null, new TreeDumperNode[] { Visit(node.Pattern, null) }),
Operations\CSharpOperationFactory.cs (1)
2774IPatternOperation pattern = (IPatternOperation)Create(boundIsPatternExpression.Pattern);