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