1 implementation of Label
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4523
public ILabelSymbol
Label
{ get; }
7 references to Label
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
1458
VisitLabel(labelOperation.
Label
);
3858
VisitLabel(operation.
Label
);
Microsoft.CodeAnalysis.Test.Utilities (5)
Compilation\OperationTreeVerifier.cs (3)
665
if (!operation.
Label
.IsImplicitlyDeclared)
667
LogString($" (Label: {operation.
Label
.Name})");
671
LogString($" (Label Id: {GetLabelId(operation.
Label
)})");
Compilation\TestOperationVisitor.cs (1)
368
Assert.NotNull(operation.
Label
);
Diagnostics\OperationTestAnalyzer.cs (1)
1449
ILabelSymbol label = ((ILabeledOperation)operationContext.Operation).
Label
;