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)
624
if (lessThanToken != this.
LessThanToken
|| parameters != this.Parameters || greaterThanToken != this.GreaterThanToken)
635
public FunctionPointerParameterListSyntax WithParameters(SeparatedSyntaxList<FunctionPointerParameterSyntax> parameters) => Update(this.
LessThanToken
, parameters, this.GreaterThanToken);
636
public FunctionPointerParameterListSyntax WithGreaterThanToken(SyntaxToken greaterThanToken) => Update(this.
LessThanToken
, this.Parameters, greaterThanToken);
Microsoft.CodeAnalysis.CSharp.Features (1)
BraceCompletion\LessAndGreaterThanBraceCompletionService.cs (1)
46
token.CheckParent<FunctionPointerParameterListSyntax>(n => n.
LessThanToken
== token))