5 references to LessThanToken
Microsoft.CodeAnalysis.CSharp (4)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1545=> node.Update(VisitToken(node.LessThanToken), VisitList(node.Parameters), VisitToken(node.GreaterThanToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
624if (lessThanToken != this.LessThanToken || parameters != this.Parameters || greaterThanToken != this.GreaterThanToken) 635public FunctionPointerParameterListSyntax WithParameters(SeparatedSyntaxList<FunctionPointerParameterSyntax> parameters) => Update(this.LessThanToken, parameters, this.GreaterThanToken); 636public FunctionPointerParameterListSyntax WithGreaterThanToken(SyntaxToken greaterThanToken) => Update(this.LessThanToken, this.Parameters, greaterThanToken);
Microsoft.CodeAnalysis.CSharp.Features (1)
BraceCompletion\LessAndGreaterThanBraceCompletionService.cs (1)
46token.CheckParent<FunctionPointerParameterListSyntax>(n => n.LessThanToken == token))