5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
2029
=> 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)
11694
public TypeParameterConstraintClauseSyntax WithWhereKeyword(SyntaxToken whereKeyword) =>
Update
(whereKeyword, this.Name, this.ColonToken, this.Constraints);
11695
public TypeParameterConstraintClauseSyntax WithName(IdentifierNameSyntax name) =>
Update
(this.WhereKeyword, name, this.ColonToken, this.Constraints);
11696
public TypeParameterConstraintClauseSyntax WithColonToken(SyntaxToken colonToken) =>
Update
(this.WhereKeyword, this.Name, colonToken, this.Constraints);
11697
public TypeParameterConstraintClauseSyntax WithConstraints(SeparatedSyntaxList<TypeParameterConstraintSyntax> constraints) =>
Update
(this.WhereKeyword, this.Name, this.ColonToken, constraints);