Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AttributeLists
6 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1921
=> node.Update(VisitList(node.
AttributeLists
), VisitToken(node.UnsafeKeyword), (BlockSyntax?)Visit(node.Block) ?? throw new ArgumentNullException("block"));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
8245
if (attributeLists != this.
AttributeLists
|| unsafeKeyword != this.UnsafeKeyword || block != this.Block)
8257
public UnsafeStatementSyntax WithUnsafeKeyword(SyntaxToken unsafeKeyword) => Update(this.
AttributeLists
, unsafeKeyword, this.Block);
8258
public UnsafeStatementSyntax WithBlock(BlockSyntax block) => Update(this.
AttributeLists
, this.UnsafeKeyword, block);
8261
public new UnsafeStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Syntax\UnsafeStatementSyntax.cs (1)
12
=> Update(
AttributeLists
, unsafeKeyword, block);