1 implementation of Catches
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4729public ImmutableArray<ICatchClauseOperation> Catches { get; }
6 references to Catches
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (3)
3652if (operation.Catches.IsEmpty && operation.Finally == null) 3671bool haveCatches = !operation.Catches.IsEmpty; 3686foreach (ICatchClauseOperation catchClause in operation.Catches)
Operations\ControlFlowRegionKind.cs (1)
63/// An <see cref="ITryOperation"/> that has a set of <see cref="ITryOperation.Catches"/> and a <see cref="ITryOperation.Finally"/>
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
724VisitArray(operation.Catches, "Catch clauses", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
430children = children.Concat(operation.Catches);