1 write to ExpressionOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3535this.ExpressionOpt = expressionOpt;
12 references to ExpressionOpt
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\BoundNode_Source.cs (2)
62if (throwStatement.ExpressionOpt != null) 64appendSource(throwStatement.ExpressionOpt);
CodeGen\EmitStatement.cs (1)
169EmitThrow(node.ExpressionOpt);
FlowAnalysis\AbstractFlowPass.cs (1)
3228BoundExpression expr = node.ExpressionOpt;
FlowAnalysis\NullableWalker.cs (1)
11050VisitThrow(node.ExpressionOpt);
Generated\BoundNodes.xml.Generated.cs (4)
3545if (expressionOpt != this.ExpressionOpt) 9770this.Visit(node.ExpressionOpt); 10942BoundExpression? expressionOpt = (BoundExpression?)this.Visit(node.ExpressionOpt); 15226new TreeDumperNode("expressionOpt", null, new TreeDumperNode[] { Visit(node.ExpressionOpt, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
664if (node.ExpressionOpt != null || _currentAwaitCatchFrame == null)
Lowering\SpillSequenceSpiller.cs (1)
602BoundExpression expression = VisitExpression(ref builder, node.ExpressionOpt);
Operations\CSharpOperationFactory.cs (1)
1938IOperation? thrownObject = Create(boundThrowStatement.ExpressionOpt);