2 implementations of GetArgumentsOfObjectCreationExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxFacts.cs (1)
1192public SeparatedSyntaxList<SyntaxNode> GetArgumentsOfObjectCreationExpression(SyntaxNode objectCreationExpression)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
1223Public Function GetArgumentsOfObjectCreationExpression(node As SyntaxNode) As SeparatedSyntaxList(Of SyntaxNode) Implements ISyntaxFacts.GetArgumentsOfObjectCreationExpression
3 references to GetArgumentsOfObjectCreationExpression
Microsoft.CodeAnalysis.Features (1)
AbstractAddParameterCodeFixProvider.cs (1)
173var arguments = (SeparatedSyntaxList<TArgumentSyntax>)syntaxFacts.GetArgumentsOfObjectCreationExpression(objectCreation);
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
1223Public Function GetArgumentsOfObjectCreationExpression(node As SyntaxNode) As SeparatedSyntaxList(Of SyntaxNode) Implements ISyntaxFacts.GetArgumentsOfObjectCreationExpression
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\FindReferences\Finders\ConstructorSymbolReferenceFinder.cs (1)
230var actualArgumentCount = syntaxFacts.GetArgumentsOfObjectCreationExpression(node).Count;