2 implementations of Label
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (2)
8132public ILabelSymbol? Label { get; } 8156public new ILabelSymbol Label => base.Label!;
9 references to Label
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
5512Debug.Assert(section.Clauses.All(c => c.Label == null)); 5542BasicBlockBuilder labeled = GetLabeledOrNewBlock(caseClause.Label);
Microsoft.CodeAnalysis.Test.Utilities (7)
Compilation\OperationTreeVerifier.cs (5)
530if (c.Label != null) 532GetLabelId(c.Label); 1825if (operation.Label != null) 1827LogString($" (Label Id: {GetLabelId(operation.Label)})"); 2066Assert.Same(((ICaseClauseOperation)operation).Label, operation.Label);
Compilation\TestOperationVisitor.cs (2)
223_ = operation.Label; 1581Assert.Same(((ICaseClauseOperation)operation).Label, operation.Label);