6 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
1726
=> 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)
4470
public FromClauseSyntax WithFromKeyword(SyntaxToken fromKeyword) =>
Update
(fromKeyword, this.Type, this.Identifier, this.InKeyword, this.Expression);
4471
public FromClauseSyntax WithType(TypeSyntax? type) =>
Update
(this.FromKeyword, type, this.Identifier, this.InKeyword, this.Expression);
4472
public FromClauseSyntax WithIdentifier(SyntaxToken identifier) =>
Update
(this.FromKeyword, this.Type, identifier, this.InKeyword, this.Expression);
4473
public FromClauseSyntax WithInKeyword(SyntaxToken inKeyword) =>
Update
(this.FromKeyword, this.Type, this.Identifier, inKeyword, this.Expression);
4474
public FromClauseSyntax WithExpression(ExpressionSyntax expression) =>
Update
(this.FromKeyword, this.Type, this.Identifier, this.InKeyword, expression);