15 references to ArgumentList
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Expressions.cs (1)
5452@this.BindArgumentsAndNames(withElementSyntax.ArgumentList, diagnostics, analyzedArguments, allowArglist: true);
Syntax.xml.Main.Generated.cs (1)
1726=> node.Update(VisitToken(node.WithKeyword), (ArgumentListSyntax?)Visit(node.ArgumentList) ?? throw new ArgumentNullException("argumentList"));
Syntax.xml.Syntax.Generated.cs (4)
4304if (withKeyword != this.WithKeyword || argumentList != this.ArgumentList) 4314public WithElementSyntax WithWithKeyword(SyntaxToken withKeyword) => Update(withKeyword, this.ArgumentList); 4317public WithElementSyntax AddArgumentListArguments(params ArgumentSyntax[] items) => WithArgumentList(this.ArgumentList.WithArguments(this.ArgumentList.Arguments.AddRange(items)));
Microsoft.CodeAnalysis.CSharp.Features (7)
SignatureHelp\WithElementSignatureHelpProvider.cs (7)
38return withElement?.ArgumentList is null ? null : withElement; 46return expression.ArgumentList != null && 47expression.ArgumentList.Span.Contains(token.SpanStart) && 48token != expression.ArgumentList.CloseParenToken; 93var textSpan = SignatureHelpUtilities.GetSignatureHelpSpan(withElement.ArgumentList); 105currentSpan.Start == SignatureHelpUtilities.GetSignatureHelpSpan(expression.ArgumentList).Start) 107return SignatureHelpUtilities.GetSignatureHelpState(expression.ArgumentList, position);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
11993Assert.NotNull(node.ArgumentList); 11994var newNode = node.WithWithKeyword(node.WithKeyword).WithArgumentList(node.ArgumentList);