1 implementation of Finally
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4730
public IBlockOperation?
Finally
{ get; }
8 references to Finally
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (3)
3652
if (operation.Catches.IsEmpty && operation.
Finally
== null)
3663
bool haveFinally = operation.
Finally
!= null;
3767
VisitStatement(operation.
Finally
);
Operations\ControlFlowRegionKind.cs (2)
55
/// Region representing <see cref="ITryOperation.
Finally
"/>
63
/// An <see cref="ITryOperation"/> that has a set of <see cref="ITryOperation.Catches"/> and a <see cref="ITryOperation.
Finally
"/>
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
725
Visit(operation.
Finally
, "Finally");
Compilation\TestOperationVisitor.cs (2)
431
if (operation.
Finally
!= null)
433
children = children.Concat(new[] { operation.
Finally
});