5 references to Update
Microsoft.AspNetCore.App.CodeFixes (1)
WebApplicationBuilderFixer.cs (1)
141
invocation = invocation.
Update
(hostBasedInvocationMethodExpr, argument);
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Main.Generated.cs (1)
1642
=> node.
Update
((ExpressionSyntax?)Visit(node.Expression) ?? throw new ArgumentNullException("expression"), (ArgumentListSyntax?)Visit(node.ArgumentList) ?? throw new ArgumentNullException("argumentList"));
Syntax.xml.Syntax.Generated.cs (2)
2522
public InvocationExpressionSyntax WithExpression(ExpressionSyntax expression) =>
Update
(expression, this.ArgumentList);
2523
public InvocationExpressionSyntax WithArgumentList(ArgumentListSyntax argumentList) =>
Update
(this.Expression, argumentList);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Simplification\Reducers\AbstractCSharpReducer.AbstractReductionRewriter.cs (1)
184
return node.
Update
(expression, argumentList);