5 references to Constraints
Microsoft.CodeAnalysis.CSharp (5)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2068=> node.Update(VisitToken(node.AllowsKeyword), VisitList(node.Constraints));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
12144if (allowsKeyword != this.AllowsKeyword || constraints != this.Constraints) 12154public AllowsConstraintClauseSyntax WithAllowsKeyword(SyntaxToken allowsKeyword) => Update(allowsKeyword, this.Constraints); 12157public AllowsConstraintClauseSyntax AddConstraints(params AllowsConstraintSyntax[] items) => WithConstraints(this.Constraints.AddRange(items));
Binder\Binder_Constraints.cs (1)
310foreach (var allowsConstraint in ((AllowsConstraintClauseSyntax)syntax).Constraints)