6 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2224
=> node.
Update
(VisitToken(node.HashToken), VisitToken(node.UndefKeyword), VisitToken(node.Name), VisitToken(node.EndOfDirectiveToken), node.IsActive);
Syntax.xml.Syntax.Generated.cs (5)
16187
public new UndefDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) =>
Update
(hashToken, this.UndefKeyword, this.Name, this.EndOfDirectiveToken, this.IsActive);
16188
public UndefDirectiveTriviaSyntax WithUndefKeyword(SyntaxToken undefKeyword) =>
Update
(this.HashToken, undefKeyword, this.Name, this.EndOfDirectiveToken, this.IsActive);
16189
public UndefDirectiveTriviaSyntax WithName(SyntaxToken name) =>
Update
(this.HashToken, this.UndefKeyword, name, this.EndOfDirectiveToken, this.IsActive);
16191
public new UndefDirectiveTriviaSyntax WithEndOfDirectiveToken(SyntaxToken endOfDirectiveToken) =>
Update
(this.HashToken, this.UndefKeyword, this.Name, endOfDirectiveToken, this.IsActive);
16192
public UndefDirectiveTriviaSyntax WithIsActive(bool isActive) =>
Update
(this.HashToken, this.UndefKeyword, this.Name, this.EndOfDirectiveToken, isActive);