1 write to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4156this.ExceptionSourceOpt = exceptionSourceOpt;
21 references to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (21)
CodeGen\EmitStatement.cs (1)
1096var exceptionSourceOpt = catchBlock.ExceptionSourceOpt;
CodeGen\Optimizer.cs (2)
1620var exceptionSourceOpt = node.ExceptionSourceOpt; 2165var exceptionSource = node.ExceptionSourceOpt;
FlowAnalysis\AbstractFlowPass.cs (2)
1822if (catchBlock.ExceptionSourceOpt != null) 1824VisitLvalue(catchBlock.ExceptionSourceOpt);
FlowAnalysis\DefiniteAssignment.cs (1)
2513var exceptionSource = catchBlock.ExceptionSourceOpt;
FlowAnalysis\NullableWalker.cs (2)
11101if (node.ExceptionSourceOpt != null) 11103VisitWithoutDiagnostics(node.ExceptionSourceOpt);
Generated\BoundNodes.xml.Generated.cs (5)
4177if (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) 9864this.Visit(node.ExceptionSourceOpt); 11039BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 12998BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 15373new TreeDumperNode("exceptionSourceOpt", null, new TreeDumperNode[] { Visit(node.ExceptionSourceOpt, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (2)
581var sourceOpt = node.ExceptionSourceOpt; 614var sourceOpt = node.ExceptionSourceOpt;
Lowering\ClosureConversion\ClosureConversion.cs (2)
1225if (node.ExceptionSourceOpt != null) 1227rewrittenExceptionSource = (BoundExpression)Visit(node.ExceptionSourceOpt);
Lowering\LocalRewriter\LocalRewriter_TryStatement.cs (1)
85BoundExpression? rewrittenExceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt);
Lowering\MethodToClassRewriter.cs (1)
137(BoundExpression?)this.Visit(node.ExceptionSourceOpt),
Lowering\SpillSequenceSpiller.cs (1)
638BoundExpression exceptionSourceOpt = (BoundExpression)this.Visit(node.ExceptionSourceOpt);
Operations\CSharpOperationFactory.cs (1)
1896IOperation? exceptionDeclarationOrExpression = CreateVariableDeclarator((BoundLocal?)boundCatchBlock.ExceptionSourceOpt);