1 implementation of ExitLabel
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4195public ILabelSymbol ExitLabel { get; }
7 references to ExitLabel
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (4)
3579var @break = GetLabeledOrNewBlock(operation.ExitLabel); 4504var @break = GetLabeledOrNewBlock(operation.ExitLabel); 4744BasicBlockBuilder? @break = GetLabeledOrNewBlock(operation.ExitLabel); 5753var @break = GetLabeledOrNewBlock(operation.ExitLabel);
Operations\OperationExtensions.cs (1)
377case ILoopOperation correspondingLoop when operation.Target.Equals(correspondingLoop.ExitLabel) ||
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
636propertyStringBuilder.Append($", Exit Label Id: {GetLabelId(operation.ExitLabel)}");
Compilation\TestOperationVisitor.cs (1)
362Assert.NotNull(operation.ExitLabel);