1 implementation of ExceptionType
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
7612
public ITypeSymbol
ExceptionType
{ get; }
8 references to ExceptionType
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (5)
3680
filterAndHandlerRegion = new RegionBuilder(ControlFlowRegionKind.FilterAndHandler, catchClause.
ExceptionType
, catchClause.Locals);
3683
var filterRegion = new RegionBuilder(ControlFlowRegionKind.Filter, catchClause.
ExceptionType
);
3686
AddExceptionStore(catchClause.
ExceptionType
, exceptionDeclarationOrExpression);
3699
var handlerRegion = new RegionBuilder(ControlFlowRegionKind.Catch, catchClause.
ExceptionType
,
3707
AddExceptionStore(catchClause.
ExceptionType
, exceptionDeclarationOrExpression);
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (2)
731
var exceptionTypeStr = operation.
ExceptionType
!= null ? operation.
ExceptionType
.ToTestDisplayString() : "null";
Compilation\TestOperationVisitor.cs (1)
442
var exceptionType = operation.
ExceptionType
;