1 implementation of ContinueLabel
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4194public ILabelSymbol ContinueLabel { get; }
7 references to ContinueLabel
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (4)
3578var @continue = GetLabeledOrNewBlock(operation.ContinueLabel); 4503var @continue = GetLabeledOrNewBlock(operation.ContinueLabel); 4743BasicBlockBuilder @continue = GetLabeledOrNewBlock(operation.ContinueLabel); 5761var @continue = GetLabeledOrNewBlock(operation.ContinueLabel);
Operations\OperationExtensions.cs (1)
378operation.Target.Equals(correspondingLoop.ContinueLabel):
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
635propertyStringBuilder.Append($", Continue Label Id: {GetLabelId(operation.ContinueLabel)}");
Compilation\TestOperationVisitor.cs (1)
361Assert.NotNull(operation.ContinueLabel);