1 write to Expression
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7957
this.
Expression
= expression;
15 references to Expression
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (2)
557
this.Visit(node.
Expression
);
558
using var _ = new PatternInput(this, GetValEscape(node.
Expression
, _localScopeDepth));
BoundTree\BoundIsPatternExpression.cs (1)
21
this.
Expression
,
FlowAnalysis\AbstractFlowPass.cs (1)
934
if (VisitPossibleConditionalAccess(node.
Expression
, out var stateWhenNotNull))
FlowAnalysis\NullableWalker_Patterns.cs (3)
1056
LearnFromAnyNullPatterns(node.
Expression
, node.Pattern);
1058
var hasStateWhenNotNull = VisitPossibleConditionalAccess(node.
Expression
, out var conditionalStateWhenNotNull);
1060
var labelStateMap = LearnFromDecisionDag(node.Syntax, node.ReachabilityDecisionDag, node.
Expression
, expressionState, hasStateWhenNotNull ? conditionalStateWhenNotNull : null);
Generated\BoundNodes.xml.Generated.cs (5)
7977
if (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))
10677
this.Visit(node.
Expression
);
12047
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
14693
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
16896
new TreeDumperNode("expression", null, new TreeDumperNode[] { Visit(node.
Expression
, null) }),
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (2)
113
var inputExpression = _localRewriter.VisitExpression(node.
Expression
);
224
BoundExpression loweredInput = _localRewriter.VisitExpression(isPatternExpression.
Expression
);
Operations\CSharpOperationFactory.cs (1)
2773
IOperation value = Create(boundIsPatternExpression.
Expression
);