4 references to Update
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (1)
1762
=> node.
Update
(VisitToken(node.IntoKeyword), VisitToken(node.Identifier), (QueryBodySyntax?)Visit(node.Body) ?? throw new ArgumentNullException("body"));
Syntax.xml.Syntax.Generated.cs (3)
4988
public QueryContinuationSyntax WithIntoKeyword(SyntaxToken intoKeyword) =>
Update
(intoKeyword, this.Identifier, this.Body);
4989
public QueryContinuationSyntax WithIdentifier(SyntaxToken identifier) =>
Update
(this.IntoKeyword, identifier, this.Body);
4990
public QueryContinuationSyntax WithBody(QueryBodySyntax body) =>
Update
(this.IntoKeyword, this.Identifier, body);