4 references to WithAccessorList
Microsoft.CodeAnalysis.CSharp (2)
_generated\2\Syntax.xml.Syntax.Generated.cs (2)
13345
internal override BasePropertyDeclarationSyntax WithAccessorListCore(AccessorListSyntax? accessorList) =>
WithAccessorList
(accessorList);
13357
return
WithAccessorList
(accessorList.WithAccessors(accessorList.Accessors.AddRange(items)));
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (1)
Microsoft.NetCore.Analyzers\InteropServices\CSharpDynamicInterfaceCastableImplementation.Fixer.cs (1)
160
return ((EventDeclarationSyntax)eventDeclaration).
WithAccessorList
(
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
670
return (ev.AccessorList != null) ? ev.
WithAccessorList
(WithBodies(ev.AccessorList)) : ev;