2 writes to ContinueLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3900this.ContinueLabel = continueLabel; 3911this.ContinueLabel = continueLabel;
36 references to ContinueLabel
Microsoft.CodeAnalysis.CSharp (36)
FlowAnalysis\AbstractFlowPass.cs (4)
2349ResolveContinues(node.ContinueLabel); 2888ResolveContinues(node.ContinueLabel); 2907ResolveContinues(node.ContinueLabel); 3358ResolveContinues(node.ContinueLabel);
FlowAnalysis\ExitPointsWalker.cs (3)
81_labelsInside.Add(node.ContinueLabel); 91_labelsInside.Add(node.ContinueLabel); 101_labelsInside.Add(node.ContinueLabel);
Generated\BoundNodes.xml.Generated.cs (16)
3960if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 3990if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4032if (outerLocals != this.OuterLocals || initializer != this.Initializer || innerLocals != this.InnerLocals || condition != this.Condition || increment != this.Increment || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4081if (enumeratorInfoOpt != this.EnumeratorInfoOpt || elementPlaceholder != this.ElementPlaceholder || elementConversion != this.ElementConversion || iterationVariableType != this.IterationVariableType || iterationVariables != this.IterationVariables || iterationErrorExpressionOpt != this.IterationErrorExpressionOpt || expression != this.Expression || deconstructionOpt != this.DeconstructionOpt || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 11479LabelSymbol continueLabel = this.VisitLabelSymbol(node.ContinueLabel); 11488LabelSymbol continueLabel = this.VisitLabelSymbol(node.ContinueLabel); 11498LabelSymbol continueLabel = this.VisitLabelSymbol(node.ContinueLabel); 11509LabelSymbol continueLabel = this.VisitLabelSymbol(node.ContinueLabel); 13590return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13598return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13609return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 13622return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, body, node.BreakLabel, node.ContinueLabel); 16019new TreeDumperNode("continueLabel", node.ContinueLabel, null), 16029new TreeDumperNode("continueLabel", node.ContinueLabel, null), 16042new TreeDumperNode("continueLabel", node.ContinueLabel, null), 16058new TreeDumperNode("continueLabel", node.ContinueLabel, null),
Lowering\LocalRewriter\LocalRewriter_DoStatement.cs (2)
60new BoundLabelStatement(syntax, node.ContinueLabel), 70new BoundLabelStatement(syntax, node.ContinueLabel),
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
136node.ContinueLabel, 580node.ContinueLabel, 881node.ContinueLabel, 1030node.ContinueLabel,
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
189node.ContinueLabel, node.HasErrors); 256blockBuilder.Add(new BoundLabelStatement(syntax, node.ContinueLabel));
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
37node.ContinueLabel,
Operations\CSharpOperationFactory.cs (4)
1840ILabelSymbol continueLabel = boundWhileStatement.ContinueLabel.GetPublicSymbol(); 1853ILabelSymbol continueLabel = boundDoStatement.ContinueLabel.GetPublicSymbol(); 1871ILabelSymbol continueLabel = boundForStatement.ContinueLabel.GetPublicSymbol(); 1978ILabelSymbol continueLabel = boundForEachStatement.ContinueLabel.GetPublicSymbol();