6 references to LessThanToken
Microsoft.CodeAnalysis.CSharp (5)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2167
=> node.Update(VisitToken(node.
LessThanToken
), (XmlNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitList(node.Attributes), VisitToken(node.SlashGreaterThanToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
15047
if (lessThanToken != this.
LessThanToken
|| name != this.Name || attributes != this.Attributes || slashGreaterThanToken != this.SlashGreaterThanToken)
15058
public XmlEmptyElementSyntax WithName(XmlNameSyntax name) => Update(this.
LessThanToken
, name, this.Attributes, this.SlashGreaterThanToken);
15059
public XmlEmptyElementSyntax WithAttributes(SyntaxList<XmlAttributeSyntax> attributes) => Update(this.
LessThanToken
, this.Name, attributes, this.SlashGreaterThanToken);
15060
public XmlEmptyElementSyntax WithSlashGreaterThanToken(SyntaxToken slashGreaterThanToken) => Update(this.
LessThanToken
, this.Name, this.Attributes, slashGreaterThanToken);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_DocumentationComments.cs (1)
243
AddXmlClassification(node.
LessThanToken
, ClassificationTypeNames.XmlDocCommentDelimiter);