1 write to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4267this.ExceptionSourceOpt = exceptionSourceOpt;
21 references to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (21)
BoundTree\BoundNode_Source.cs (1)
41appendSource(catchBlock.ExceptionSourceOpt);
CodeGen\EmitStatement.cs (1)
1121var exceptionSourceOpt = catchBlock.ExceptionSourceOpt;
CodeGen\Optimizer.cs (2)
1696var exceptionSourceOpt = node.ExceptionSourceOpt; 2297var exceptionSource = node.ExceptionSourceOpt;
FlowAnalysis\AbstractFlowPass.cs (2)
1970if (catchBlock.ExceptionSourceOpt != null) 1972VisitLvalue(catchBlock.ExceptionSourceOpt);
FlowAnalysis\DefiniteAssignment.cs (1)
2686var exceptionSource = catchBlock.ExceptionSourceOpt;
FlowAnalysis\NullableWalker.cs (2)
12837if (node.ExceptionSourceOpt != null) 12839VisitWithoutDiagnostics(node.ExceptionSourceOpt);
Generated\BoundNodes.xml.Generated.cs (5)
4288if (locals != this.Locals || exceptionSourceOpt != this.ExceptionSourceOpt || !TypeSymbol.Equals(exceptionTypeOpt, this.ExceptionTypeOpt, TypeCompareKind.ConsiderEverything) || exceptionFilterPrologueOpt != this.ExceptionFilterPrologueOpt || exceptionFilterOpt != this.ExceptionFilterOpt || body != this.Body || isSynthesizedAsyncCatchAll != this.IsSynthesizedAsyncCatchAll) 10259this.Visit(node.ExceptionSourceOpt); 11550BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 13640BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 16111new TreeDumperNode("exceptionSourceOpt", null, new TreeDumperNode[] { Visit(node.ExceptionSourceOpt, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (2)
672var sourceOpt = node.ExceptionSourceOpt; 705var sourceOpt = node.ExceptionSourceOpt;
Lowering\ClosureConversion\ClosureConversion.cs (2)
1244if (node.ExceptionSourceOpt != null) 1246rewrittenExceptionSource = (BoundExpression)Visit(node.ExceptionSourceOpt);
Lowering\LocalRewriter\LocalRewriter_TryStatement.cs (1)
85BoundExpression? rewrittenExceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt);
Lowering\SpillSequenceSpiller.cs (1)
711BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt);
Operations\CSharpOperationFactory.cs (1)
2007IOperation? exceptionDeclarationOrExpression = CreateVariableDeclarator((BoundLocal?)boundCatchBlock.ExceptionSourceOpt);