Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AttributeLists
7 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (7)
_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 (5)
7328
if (attributeLists != this.
AttributeLists
|| continueKeyword != this.ContinueKeyword || name != this.Name || semicolonToken != this.SemicolonToken)
7340
public ContinueStatementSyntax WithContinueKeyword(SyntaxToken continueKeyword) => Update(this.
AttributeLists
, continueKeyword, this.Name, this.SemicolonToken);
7342
public ContinueStatementSyntax WithName(IdentifierNameSyntax? name) => Update(this.
AttributeLists
, this.ContinueKeyword, name, this.SemicolonToken);
7343
public ContinueStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.
AttributeLists
, this.ContinueKeyword, this.Name, semicolonToken);
7346
public new ContinueStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\ContinueStatementSyntax.cs (1)
15
=> Update(
AttributeLists
, continueKeyword, Name, semicolonToken);