Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AttributeLists
9 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (9)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1915
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.FixedKeyword), VisitToken(node.OpenParenToken), (VariableDeclarationSyntax?)Visit(node.Declaration) ?? throw new ArgumentNullException("declaration"), VisitToken(node.CloseParenToken), (StatementSyntax?)Visit(node.Statement) ?? throw new ArgumentNullException("statement"));
_generated\2\Syntax.xml.Syntax.Generated.cs (7)
8114
if (attributeLists != this.
AttributeLists
|| fixedKeyword != this.FixedKeyword || openParenToken != this.OpenParenToken || declaration != this.Declaration || closeParenToken != this.CloseParenToken || statement != this.Statement)
8126
public FixedStatementSyntax WithFixedKeyword(SyntaxToken fixedKeyword) => Update(this.
AttributeLists
, fixedKeyword, this.OpenParenToken, this.Declaration, this.CloseParenToken, this.Statement);
8127
public FixedStatementSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(this.
AttributeLists
, this.FixedKeyword, openParenToken, this.Declaration, this.CloseParenToken, this.Statement);
8128
public FixedStatementSyntax WithDeclaration(VariableDeclarationSyntax declaration) => Update(this.
AttributeLists
, this.FixedKeyword, this.OpenParenToken, declaration, this.CloseParenToken, this.Statement);
8129
public FixedStatementSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.
AttributeLists
, this.FixedKeyword, this.OpenParenToken, this.Declaration, closeParenToken, this.Statement);
8130
public FixedStatementSyntax WithStatement(StatementSyntax statement) => Update(this.
AttributeLists
, this.FixedKeyword, this.OpenParenToken, this.Declaration, this.CloseParenToken, statement);
8133
public new FixedStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\FixedStatementSyntax.cs (1)
12
=> Update(
AttributeLists
, fixedKeyword, openParenToken, declaration, closeParenToken, statement);