13 references to ArgumentList
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1729=> node.Update(VisitToken(node.WithKeyword), (ArgumentListSyntax?)Visit(node.ArgumentList) ?? throw new ArgumentNullException("argumentList"));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
4305if (withKeyword != this.WithKeyword || argumentList != this.ArgumentList) 4315public WithElementSyntax WithWithKeyword(SyntaxToken withKeyword) => Update(withKeyword, this.ArgumentList); 4318public WithElementSyntax AddArgumentListArguments(params ArgumentSyntax[] items) => WithArgumentList(this.ArgumentList.WithArguments(this.ArgumentList.Arguments.AddRange(items)));
Binder\Binder_Expressions.cs (1)
5456@this.BindArgumentsAndNames(withElementSyntax.ArgumentList, diagnostics, analyzedArguments, allowArglist: true);
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);