Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AttributeLists
8 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
1906
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.Keyword), (BlockSyntax?)Visit(node.Block) ?? throw new ArgumentNullException("block"));
Syntax.xml.Syntax.Generated.cs (4)
8135
if (attributeLists != this.
AttributeLists
|| keyword != this.Keyword || block != this.Block)
8147
public CheckedStatementSyntax WithKeyword(SyntaxToken keyword) => Update(this.
AttributeLists
, keyword, this.Block);
8148
public CheckedStatementSyntax WithBlock(BlockSyntax block) => Update(this.
AttributeLists
, this.Keyword, block);
8151
public new CheckedStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\CheckedStatementSyntax.cs (1)
12
=> Update(
AttributeLists
, keyword, block);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
12730
Assert.Equal(default, node.
AttributeLists
);
12733
var newNode = node.WithAttributeLists(node.
AttributeLists
).WithKeyword(node.Keyword).WithBlock(node.Block);