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)
1902
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.BreakKeyword), (IdentifierNameSyntax?)Visit(node.Name), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
7260
if (attributeLists != this.
AttributeLists
|| breakKeyword != this.BreakKeyword || name != this.Name || semicolonToken != this.SemicolonToken)
7272
public BreakStatementSyntax WithBreakKeyword(SyntaxToken breakKeyword) => Update(this.
AttributeLists
, breakKeyword, this.Name, this.SemicolonToken);
7274
public BreakStatementSyntax WithName(IdentifierNameSyntax? name) => Update(this.
AttributeLists
, this.BreakKeyword, name, this.SemicolonToken);
7275
public BreakStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.
AttributeLists
, this.BreakKeyword, this.Name, semicolonToken);
7278
public new BreakStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\BreakStatementSyntax.cs (1)
15
=> Update(
AttributeLists
, breakKeyword, Name, semicolonToken);