5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
2038
=> node.
Update
(VisitToken(node.WhereKeyword), (IdentifierNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitToken(node.ColonToken), VisitList(node.Constraints));
Syntax.xml.Syntax.Generated.cs (4)
11739
public TypeParameterConstraintClauseSyntax WithWhereKeyword(SyntaxToken whereKeyword) =>
Update
(whereKeyword, this.Name, this.ColonToken, this.Constraints);
11740
public TypeParameterConstraintClauseSyntax WithName(IdentifierNameSyntax name) =>
Update
(this.WhereKeyword, name, this.ColonToken, this.Constraints);
11741
public TypeParameterConstraintClauseSyntax WithColonToken(SyntaxToken colonToken) =>
Update
(this.WhereKeyword, this.Name, colonToken, this.Constraints);
11742
public TypeParameterConstraintClauseSyntax WithConstraints(SeparatedSyntaxList<TypeParameterConstraintSyntax> constraints) =>
Update
(this.WhereKeyword, this.Name, this.ColonToken, constraints);