6 references to WithArguments
Microsoft.CodeAnalysis.CSharp (3)
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
185
public GenericNameSyntax AddTypeArgumentListArguments(params TypeSyntax[] items) => WithTypeArgumentList(this.TypeArgumentList.
WithArguments
(this.TypeArgumentList.Arguments.AddRange(items)));
243
public TypeArgumentListSyntax AddArguments(params TypeSyntax[] items) =>
WithArguments
(this.Arguments.AddRange(items));
14410
return WithTypeArgumentList(typeArgumentList.
WithArguments
(typeArgumentList.Arguments.AddRange(items)));
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\roslyn\src\Analyzers\CSharp\CodeFixes\UseUnboundGenericTypeInNameOf\CSharpUseUnboundGenericTypeInNameOfCodeFixProvider.cs (1)
67
return current.
WithArguments
(SeparatedList<TypeSyntax>(list));
Microsoft.CodeAnalysis.CSharp.Features (1)
src\roslyn\src\Analyzers\CSharp\CodeFixes\UseUnboundGenericTypeInNameOf\CSharpUseUnboundGenericTypeInNameOfCodeFixProvider.cs (1)
67
return current.
WithArguments
(SeparatedList<TypeSyntax>(list));
Microsoft.CodeAnalysis.Razor.Compiler (1)
CSharp\GenericTypeNameRewriter.cs (1)
87
return node.WithTypeArgumentList(node.TypeArgumentList.
WithArguments
(args));