1 implementation of Finally
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4730public IBlockOperation? Finally { get; }
8 references to Finally
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (3)
3652if (operation.Catches.IsEmpty && operation.Finally == null) 3663bool haveFinally = operation.Finally != null; 3767VisitStatement(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)
725Visit(operation.Finally, "Finally");
Compilation\TestOperationVisitor.cs (2)
431if (operation.Finally != null) 433children = children.Concat(new[] { operation.Finally });