3 references to WithAttributeLists
Microsoft.CodeAnalysis.CSharp (2)
Syntax.xml.Syntax.Generated.cs (2)
13909
internal override BaseParameterSyntax WithAttributeListsCore(SyntaxList<AttributeListSyntax> attributeLists) =>
WithAttributeLists
(attributeLists);
13917
public new FunctionPointerParameterSyntax AddAttributeLists(params AttributeListSyntax[] items) =>
WithAttributeLists
(this.AttributeLists.AddRange(items));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
13663
var newNode = node.
WithAttributeLists
(node.AttributeLists).WithModifiers(node.Modifiers).WithType(node.Type);