1 write to Expression
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8250
this.
Expression
= expression;
12 references to Expression
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\Expression.cs (1)
154
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.
Expression
);
CodeGen\EmitExpression.cs (1)
356
this.EmitThrow(node.
Expression
);
FlowAnalysis\AbstractFlowPass.cs (1)
903
VisitRvalue(node.
Expression
);
FlowAnalysis\NullableWalker.cs (1)
11043
VisitThrow(node.
Expression
);
Generated\BoundNodes.xml.Generated.cs (5)
8260
if (expression != this.
Expression
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10378
this.Visit(node.
Expression
);
11732
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
14307
BoundExpression expression = (BoundExpression)this.Visit(node.
Expression
);
16435
new TreeDumperNode("expression", null, new TreeDumperNode[] { Visit(node.
Expression
, null) }),
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
445
return _factory.ThrowExpression(operand.
Expression
, rewrittenType);
Lowering\SpillSequenceSpiller.cs (1)
1385
BoundExpression operand = VisitExpression(ref builder, node.
Expression
);
Operations\CSharpOperationFactory.cs (1)
1602
IOperation expression = Create(boundThrowExpression.
Expression
);