2 writes to Label
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3799this.Label = label; 3808this.Label = label;
7 references to Label
Microsoft.CodeAnalysis.CSharp (7)
FlowAnalysis\AbstractFlowPass.cs (1)
3315PendingBranches.Add(new PendingBranch(node, this.State, node.Label));
FlowAnalysis\ExitPointsWalker.cs (1)
134if (_labelsInside.Contains(((BoundContinueStatement)pending.Branch).Label)) continue;
Generated\BoundNodes.xml.Generated.cs (3)
3818if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(label, this.Label)) 11718LabelSymbol label = this.VisitLabelSymbol(node.Label); 16329new TreeDumperNode("label", node.Label, null),
Lowering\LocalRewriter\LocalRewriter_ContinueStatement.cs (1)
15BoundStatement result = new BoundGotoStatement(node.Syntax, node.Label, node.HasErrors);
Operations\CSharpOperationFactory.cs (1)
1828ILabelSymbol target = boundContinueStatement.Label.GetPublicSymbol();