6 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
1735
=> node.
Update
(VisitToken(node.FromKeyword), (TypeSyntax?)Visit(node.Type), VisitToken(node.Identifier), VisitToken(node.InKeyword), (ExpressionSyntax?)Visit(node.Expression) ?? throw new ArgumentNullException("expression"));
Syntax.xml.Syntax.Generated.cs (5)
4514
public FromClauseSyntax WithFromKeyword(SyntaxToken fromKeyword) =>
Update
(fromKeyword, this.Type, this.Identifier, this.InKeyword, this.Expression);
4515
public FromClauseSyntax WithType(TypeSyntax? type) =>
Update
(this.FromKeyword, type, this.Identifier, this.InKeyword, this.Expression);
4516
public FromClauseSyntax WithIdentifier(SyntaxToken identifier) =>
Update
(this.FromKeyword, this.Type, identifier, this.InKeyword, this.Expression);
4517
public FromClauseSyntax WithInKeyword(SyntaxToken inKeyword) =>
Update
(this.FromKeyword, this.Type, this.Identifier, inKeyword, this.Expression);
4518
public FromClauseSyntax WithExpression(ExpressionSyntax expression) =>
Update
(this.FromKeyword, this.Type, this.Identifier, this.InKeyword, expression);