8 references to WhereKeyword
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2041
=> 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)
11731
if (whereKeyword != this.
WhereKeyword
|| name != this.Name || colonToken != this.ColonToken || constraints != this.Constraints)
11742
public TypeParameterConstraintClauseSyntax WithName(IdentifierNameSyntax name) => Update(this.
WhereKeyword
, name, this.ColonToken, this.Constraints);
11743
public TypeParameterConstraintClauseSyntax WithColonToken(SyntaxToken colonToken) => Update(this.
WhereKeyword
, this.Name, colonToken, this.Constraints);
11744
public TypeParameterConstraintClauseSyntax WithConstraints(SeparatedSyntaxList<TypeParameterConstraintSyntax> constraints) => Update(this.
WhereKeyword
, this.Name, this.ColonToken, constraints);
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
169
syntax.ConstraintClauses[0].
WhereKeyword
, MessageID.IDS_OverrideWithConstraints, diagnostics);
Symbols\Symbol.cs (1)
1506
constraintClauses[0].
WhereKeyword
.GetLocation());
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1722
return TextSpan.FromBounds(constraint.
WhereKeyword
.SpanStart, constraint.Constraints.Last().Span.End);