5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2053
=> node.
Update
(VisitToken(node.WhereKeyword), (IdentifierNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitToken(node.ColonToken), VisitList(node.Constraints));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
11909
public TypeParameterConstraintClauseSyntax WithWhereKeyword(SyntaxToken whereKeyword) =>
Update
(whereKeyword, this.Name, this.ColonToken, this.Constraints);
11910
public TypeParameterConstraintClauseSyntax WithName(IdentifierNameSyntax name) =>
Update
(this.WhereKeyword, name, this.ColonToken, this.Constraints);
11911
public TypeParameterConstraintClauseSyntax WithColonToken(SyntaxToken colonToken) =>
Update
(this.WhereKeyword, this.Name, colonToken, this.Constraints);
11912
public TypeParameterConstraintClauseSyntax WithConstraints(SeparatedSyntaxList<TypeParameterConstraintSyntax> constraints) =>
Update
(this.WhereKeyword, this.Name, this.ColonToken, constraints);