1 write to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4267this.ExceptionSourceOpt = exceptionSourceOpt;
22 references to ExceptionSourceOpt
Microsoft.CodeAnalysis.CSharp (22)
BoundTree\BoundNode_Source.cs (1)
41appendSource(catchBlock.ExceptionSourceOpt);
CodeGen\EmitStatement.cs (1)
1121var exceptionSourceOpt = catchBlock.ExceptionSourceOpt;
CodeGen\Optimizer.cs (2)
1687var exceptionSourceOpt = node.ExceptionSourceOpt; 2288var exceptionSource = node.ExceptionSourceOpt;
FlowAnalysis\AbstractFlowPass.cs (2)
1963if (catchBlock.ExceptionSourceOpt != null) 1965VisitLvalue(catchBlock.ExceptionSourceOpt);
FlowAnalysis\DefiniteAssignment.cs (1)
2681var exceptionSource = catchBlock.ExceptionSourceOpt;
FlowAnalysis\NullableWalker.cs (2)
12020if (node.ExceptionSourceOpt != null) 12022VisitWithoutDiagnostics(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) 10221this.Visit(node.ExceptionSourceOpt); 11434BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 13465BoundExpression? exceptionSourceOpt = (BoundExpression?)this.Visit(node.ExceptionSourceOpt); 15933new TreeDumperNode("exceptionSourceOpt", null, new TreeDumperNode[] { Visit(node.ExceptionSourceOpt, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (2)
612var sourceOpt = node.ExceptionSourceOpt; 645var sourceOpt = node.ExceptionSourceOpt;
Lowering\ClosureConversion\ClosureConversion.cs (2)
1241if (node.ExceptionSourceOpt != null) 1243rewrittenExceptionSource = (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)
709BoundExpression exceptionSourceOpt = (BoundExpression)this.Visit(node.ExceptionSourceOpt);
Operations\CSharpOperationFactory.cs (1)
2007IOperation? exceptionDeclarationOrExpression = CreateVariableDeclarator((BoundLocal?)boundCatchBlock.ExceptionSourceOpt);