3 references to WithAttributeLists
Microsoft.CodeAnalysis.CSharp (2)
Syntax.xml.Syntax.Generated.cs (2)
7009
internal override StatementSyntax WithAttributeListsCore(SyntaxList<AttributeListSyntax> attributeLists) =>
WithAttributeLists
(attributeLists);
7016
public new LabeledStatementSyntax AddAttributeLists(params AttributeListSyntax[] items) =>
WithAttributeLists
(this.AttributeLists.AddRange(items));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
12522
var newNode = node.
WithAttributeLists
(node.AttributeLists).WithIdentifier(node.Identifier).WithColonToken(node.ColonToken).WithStatement(node.Statement);