6 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2221
=> node.
Update
(VisitToken(node.OpenParenToken), VisitToken(node.Line), VisitToken(node.CommaToken), VisitToken(node.Character), VisitToken(node.CloseParenToken));
Syntax.xml.Syntax.Generated.cs (5)
16273
public LineDirectivePositionSyntax WithOpenParenToken(SyntaxToken openParenToken) =>
Update
(openParenToken, this.Line, this.CommaToken, this.Character, this.CloseParenToken);
16274
public LineDirectivePositionSyntax WithLine(SyntaxToken line) =>
Update
(this.OpenParenToken, line, this.CommaToken, this.Character, this.CloseParenToken);
16275
public LineDirectivePositionSyntax WithCommaToken(SyntaxToken commaToken) =>
Update
(this.OpenParenToken, this.Line, commaToken, this.Character, this.CloseParenToken);
16276
public LineDirectivePositionSyntax WithCharacter(SyntaxToken character) =>
Update
(this.OpenParenToken, this.Line, this.CommaToken, character, this.CloseParenToken);
16277
public LineDirectivePositionSyntax WithCloseParenToken(SyntaxToken closeParenToken) =>
Update
(this.OpenParenToken, this.Line, this.CommaToken, this.Character, closeParenToken);