Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AttributeLists
7 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
2107
=> node.Update(VisitList(node.
AttributeLists
), VisitList(node.Modifiers), (TypeSyntax?)Visit(node.Type));
Syntax.xml.Syntax.Generated.cs (4)
13972
if (attributeLists != this.
AttributeLists
|| modifiers != this.Modifiers || type != this.Type)
13985
public new IncompleteMemberSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.
AttributeLists
, modifiers, this.Type);
13986
public IncompleteMemberSyntax WithType(TypeSyntax? type) => Update(this.
AttributeLists
, this.Modifiers, type);
13989
public new IncompleteMemberSyntax AddAttributeLists(params AttributeListSyntax[] items) => WithAttributeLists(this.
AttributeLists
.AddRange(items));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
13672
Assert.Equal(default, node.
AttributeLists
);
13675
var newNode = node.WithAttributeLists(node.
AttributeLists
).WithModifiers(node.Modifiers).WithType(node.Type);