11 references to XmlEmptyElement
Microsoft.CodeAnalysis.CSharp (6)
_generated\1\Syntax.xml.Internal.Generated.cs (2)
33386return new XmlEmptyElementSyntax(SyntaxKind.XmlEmptyElement, lessThanToken, name, attributes.Node, slashGreaterThanToken, this.context); 38813return new XmlEmptyElementSyntax(SyntaxKind.XmlEmptyElement, lessThanToken, name, attributes.Node, slashGreaterThanToken);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
15173/// <item><description><see cref="SyntaxKind.XmlEmptyElement"/></description></item>
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
1448Debug.Assert(xmlSyntax is XmlAttributeSyntax || xmlSyntax.Kind() == SyntaxKind.XmlEmptyElement || xmlSyntax.Kind() == SyntaxKind.XmlElementStartTag);
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
200if (nodeKind == SyntaxKind.XmlEmptyElement)
Syntax\SyntaxExtensions.cs (1)
138if (parentKind == SyntaxKind.XmlEmptyElement)
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (4)
142if (token.Parent?.Kind() is SyntaxKind.XmlEmptyElement or SyntaxKind.XmlText || 144(token.Parent.IsKind(SyntaxKind.XmlName) && token.Parent.IsParentKind(SyntaxKind.XmlEmptyElement))) 166if (token.Parent.IsParentKind(SyntaxKind.XmlEmptyElement) && 173(token.Parent.Parent.IsKind(SyntaxKind.XmlEmptyElement) && token.Parent.Parent.Parent is DocumentationCommentTriviaSyntax))
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_DocumentationComments.cs (1)
48case SyntaxKind.XmlEmptyElement: