1 implementation of ExitLabel
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
3822public ILabelSymbol ExitLabel { get; }
7 references to ExitLabel
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (4)
3562var @break = GetLabeledOrNewBlock(operation.ExitLabel); 4423var @break = GetLabeledOrNewBlock(operation.ExitLabel); 4647BasicBlockBuilder? @break = GetLabeledOrNewBlock(operation.ExitLabel); 5656var @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);