7 references to Update
Microsoft.CodeAnalysis.CSharp (7)
Syntax.xml.Main.Generated.cs (1)
2245
=> node.
Update
(VisitToken(node.HashToken), VisitToken(node.NullableKeyword), VisitToken(node.SettingToken), VisitToken(node.TargetToken), VisitToken(node.EndOfDirectiveToken), node.IsActive);
Syntax.xml.Syntax.Generated.cs (6)
16764
public new NullableDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) =>
Update
(hashToken, this.NullableKeyword, this.SettingToken, this.TargetToken, this.EndOfDirectiveToken, this.IsActive);
16765
public NullableDirectiveTriviaSyntax WithNullableKeyword(SyntaxToken nullableKeyword) =>
Update
(this.HashToken, nullableKeyword, this.SettingToken, this.TargetToken, this.EndOfDirectiveToken, this.IsActive);
16766
public NullableDirectiveTriviaSyntax WithSettingToken(SyntaxToken settingToken) =>
Update
(this.HashToken, this.NullableKeyword, settingToken, this.TargetToken, this.EndOfDirectiveToken, this.IsActive);
16767
public NullableDirectiveTriviaSyntax WithTargetToken(SyntaxToken targetToken) =>
Update
(this.HashToken, this.NullableKeyword, this.SettingToken, targetToken, this.EndOfDirectiveToken, this.IsActive);
16769
public new NullableDirectiveTriviaSyntax WithEndOfDirectiveToken(SyntaxToken endOfDirectiveToken) =>
Update
(this.HashToken, this.NullableKeyword, this.SettingToken, this.TargetToken, endOfDirectiveToken, this.IsActive);
16770
public NullableDirectiveTriviaSyntax WithIsActive(bool isActive) =>
Update
(this.HashToken, this.NullableKeyword, this.SettingToken, this.TargetToken, this.EndOfDirectiveToken, isActive);