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