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)
1891
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.ThrowKeyword), (ExpressionSyntax?)Visit(node.Expression), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
7365
if (attributeLists != this.
AttributeLists
|| throwKeyword != this.ThrowKeyword || expression != this.Expression || semicolonToken != this.SemicolonToken)
7377
public ThrowStatementSyntax WithThrowKeyword(SyntaxToken throwKeyword) => Update(this.
AttributeLists
, throwKeyword, this.Expression, this.SemicolonToken);
7378
public ThrowStatementSyntax WithExpression(ExpressionSyntax? expression) => Update(this.
AttributeLists
, this.ThrowKeyword, expression, this.SemicolonToken);
7379
public ThrowStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.
AttributeLists
, this.ThrowKeyword, this.Expression, semicolonToken);
7382
public new ThrowStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\ThrowStatementSyntax.cs (1)
12
=> Update(
AttributeLists
, throwKeyword, expression, semicolonToken);