5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
1969
=> node.
Update
(VisitToken(node.ExternKeyword), VisitToken(node.AliasKeyword), VisitToken(node.Identifier), VisitToken(node.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (4)
9409
public ExternAliasDirectiveSyntax WithExternKeyword(SyntaxToken externKeyword) =>
Update
(externKeyword, this.AliasKeyword, this.Identifier, this.SemicolonToken);
9410
public ExternAliasDirectiveSyntax WithAliasKeyword(SyntaxToken aliasKeyword) =>
Update
(this.ExternKeyword, aliasKeyword, this.Identifier, this.SemicolonToken);
9411
public ExternAliasDirectiveSyntax WithIdentifier(SyntaxToken identifier) =>
Update
(this.ExternKeyword, this.AliasKeyword, identifier, this.SemicolonToken);
9412
public ExternAliasDirectiveSyntax WithSemicolonToken(SyntaxToken semicolonToken) =>
Update
(this.ExternKeyword, this.AliasKeyword, this.Identifier, semicolonToken);