5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
1960
=> node.
Update
(VisitToken(node.ExternKeyword), VisitToken(node.AliasKeyword), VisitToken(node.Identifier), VisitToken(node.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (4)
9364
public ExternAliasDirectiveSyntax WithExternKeyword(SyntaxToken externKeyword) =>
Update
(externKeyword, this.AliasKeyword, this.Identifier, this.SemicolonToken);
9365
public ExternAliasDirectiveSyntax WithAliasKeyword(SyntaxToken aliasKeyword) =>
Update
(this.ExternKeyword, aliasKeyword, this.Identifier, this.SemicolonToken);
9366
public ExternAliasDirectiveSyntax WithIdentifier(SyntaxToken identifier) =>
Update
(this.ExternKeyword, this.AliasKeyword, identifier, this.SemicolonToken);
9367
public ExternAliasDirectiveSyntax WithSemicolonToken(SyntaxToken semicolonToken) =>
Update
(this.ExternKeyword, this.AliasKeyword, this.Identifier, semicolonToken);