6 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2212
=> node.
Update
(VisitToken(node.HashToken), VisitToken(node.DefineKeyword), VisitToken(node.Name), VisitToken(node.EndOfDirectiveToken), node.IsActive);
Syntax.xml.Syntax.Generated.cs (5)
16087
public new DefineDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) =>
Update
(hashToken, this.DefineKeyword, this.Name, this.EndOfDirectiveToken, this.IsActive);
16088
public DefineDirectiveTriviaSyntax WithDefineKeyword(SyntaxToken defineKeyword) =>
Update
(this.HashToken, defineKeyword, this.Name, this.EndOfDirectiveToken, this.IsActive);
16089
public DefineDirectiveTriviaSyntax WithName(SyntaxToken name) =>
Update
(this.HashToken, this.DefineKeyword, name, this.EndOfDirectiveToken, this.IsActive);
16091
public new DefineDirectiveTriviaSyntax WithEndOfDirectiveToken(SyntaxToken endOfDirectiveToken) =>
Update
(this.HashToken, this.DefineKeyword, this.Name, endOfDirectiveToken, this.IsActive);
16092
public DefineDirectiveTriviaSyntax WithIsActive(bool isActive) =>
Update
(this.HashToken, this.DefineKeyword, this.Name, this.EndOfDirectiveToken, isActive);