11 references to Name
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1905
=> node.Update(VisitList(node.AttributeLists), VisitToken(node.ContinueKeyword), (IdentifierNameSyntax?)Visit(node.
Name
), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
7328
if (attributeLists != this.AttributeLists || continueKeyword != this.ContinueKeyword || name != this.
Name
|| semicolonToken != this.SemicolonToken)
7339
public new ContinueStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.ContinueKeyword, this.
Name
, this.SemicolonToken);
7340
public ContinueStatementSyntax WithContinueKeyword(SyntaxToken continueKeyword) => Update(this.AttributeLists, continueKeyword, this.
Name
, this.SemicolonToken);
7343
public ContinueStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.ContinueKeyword, this.
Name
, semicolonToken);
Binder\Binder_Statements.cs (1)
2954
=> BindBreakOrContinue(node, node.
Name
, diagnostics, isBreak: false);
Syntax\ContinueStatementSyntax.cs (2)
12
=> Update(attributeLists, continueKeyword,
Name
, semicolonToken);
15
=> Update(AttributeLists, continueKeyword,
Name
, semicolonToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers_FlagVariable.cs (1)
364
=> statement is BreakStatementSyntax { Name: null } or ContinueStatementSyntax {
Name
: null };
Microsoft.CodeAnalysis.CSharp.Features (2)
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
96
if (continueStatement.
Name
is { Identifier.ValueText: var continueName } ? continueName == labelName : highlightContinues)
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers_FlagVariable.cs (1)
364
=> statement is BreakStatementSyntax { Name: null } or ContinueStatementSyntax {
Name
: null };