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)
1876
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.Identifier), VisitToken(node.ColonToken), (StatementSyntax?)Visit(node.Statement) ?? throw new ArgumentNullException("statement"));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
7045
if (attributeLists != this.
AttributeLists
|| identifier != this.Identifier || colonToken != this.ColonToken || statement != this.Statement)
7057
public LabeledStatementSyntax WithIdentifier(SyntaxToken identifier) => Update(this.
AttributeLists
, identifier, this.ColonToken, this.Statement);
7058
public LabeledStatementSyntax WithColonToken(SyntaxToken colonToken) => Update(this.
AttributeLists
, this.Identifier, colonToken, this.Statement);
7059
public LabeledStatementSyntax WithStatement(StatementSyntax statement) => Update(this.
AttributeLists
, this.Identifier, this.ColonToken, statement);
7062
public new LabeledStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\LabeledStatementSyntax.cs (1)
12
=> Update(
AttributeLists
, identifier, colonToken, statement);