1 write to Expression
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
945
this.
Expression
= expression;
18 references to Expression
Microsoft.CodeAnalysis.CSharp (18)
BoundTree\BoundExpression.cs (2)
218
Debug.Assert(
Expression
.ConstantValueOpt == null);
227
return
Expression
.ExpressionSymbol;
BoundTree\Expression.cs (1)
175
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.
Expression
);
BoundTree\Formatting.cs (1)
172
public override object Display =>
Expression
.Display;
CodeGen\EmitAddress.cs (1)
186
if (passByCopyExpr.
Expression
is BoundSequence sequence)
CodeGen\EmitExpression.cs (2)
138
EmitExpression(((BoundPassByCopy)expression).
Expression
, used);
1929
current = ((BoundPassByCopy)current).
Expression
;
CodeGen\Optimizer.cs (1)
609
this.VisitExpression(node.
Expression
, context),
FlowAnalysis\AbstractFlowPass.cs (1)
910
VisitRvalue(node.
Expression
);
Generated\BoundNodes.xml.Generated.cs (5)
955
if (expression != this.
Expression
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9466
this.Visit(node.
Expression
);
10513
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
11998
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
14564
new TreeDumperNode("expression", null, new TreeDumperNode[] { Visit(node.
Expression
, null) }),
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
208
return Visit(((BoundPassByCopy)node).
Expression
);
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
330
return IsSafeForReordering(((BoundPassByCopy)current).
Expression
, kind);
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (1)
884
return ReadIsSideeffecting(((BoundPassByCopy)expression).
Expression
);
Lowering\SpillSequenceSpiller.cs (1)
1094
var expression = VisitExpression(ref builder, node.
Expression
);