2 implementations of Label
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (2)
7759public ILabelSymbol? Label { get; } 7783public new ILabelSymbol Label => base.Label!;
9 references to Label
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
5415Debug.Assert(section.Clauses.All(c => c.Label == null)); 5445BasicBlockBuilder labeled = GetLabeledOrNewBlock(caseClause.Label);
Microsoft.CodeAnalysis.Test.Utilities (7)
Compilation\OperationTreeVerifier.cs (5)
530if (c.Label != null) 532GetLabelId(c.Label); 1787if (operation.Label != null) 1789LogString($" (Label Id: {GetLabelId(operation.Label)})"); 2028Assert.Same(((ICaseClauseOperation)operation).Label, operation.Label);
Compilation\TestOperationVisitor.cs (2)
223_ = operation.Label; 1563Assert.Same(((ICaseClauseOperation)operation).Label, operation.Label);