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)
4305
if (withKeyword != this.WithKeyword || argumentList != this.
ArgumentList
)
4315
public WithElementSyntax WithWithKeyword(SyntaxToken withKeyword) => Update(withKeyword, this.
ArgumentList
);
4318
public 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)
38
return withElement?.
ArgumentList
is null ? null : withElement;
46
return expression.
ArgumentList
!= null &&
47
expression.
ArgumentList
.Span.Contains(token.SpanStart) &&
48
token != expression.
ArgumentList
.CloseParenToken;
93
var textSpan = SignatureHelpUtilities.GetSignatureHelpSpan(withElement.
ArgumentList
);
105
currentSpan.Start == SignatureHelpUtilities.GetSignatureHelpSpan(expression.
ArgumentList
).Start)
107
return SignatureHelpUtilities.GetSignatureHelpState(expression.
ArgumentList
, position);