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