25 references to CrefReference
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\DocumentationCommentCrefBinder.vb (1)
422
Case SyntaxKind.
CrefReference
Binding\DocumentationCommentCrefBinder_Compat.vb (1)
43
While name IsNot Nothing And name.Kind <> SyntaxKind.
CrefReference
Compilation\SemanticModel.vb (1)
668
SyntaxKind.
CrefReference
,
Compilation\SyntaxTreeSemanticModel.vb (3)
559
node.Kind = SyntaxKind.
CrefReference
)
603
If node.Kind = SyntaxKind.
CrefReference
Then
607
isTopLevel = node.Parent IsNot Nothing AndAlso node.Parent.Kind = SyntaxKind.
CrefReference
Generated\Syntax.xml.Internal.Generated.vb (4)
53105
Dim cached = SyntaxNodeCache.TryGetNode(SyntaxKind.
CrefReference
, name, signature, asClause, hash)
53110
Dim result = New CrefReferenceSyntax(SyntaxKind.
CrefReference
, name, signature, asClause)
65183
Dim cached = VisualBasicSyntaxNodeCache.TryGetNode(SyntaxKind.
CrefReference
, name, signature, asClause, _factoryContext, hash)
65188
Dim result = New CrefReferenceSyntax(SyntaxKind.
CrefReference
, name, signature, asClause, _factoryContext)
Generated\Syntax.xml.Main.Generated.vb (2)
41280
Return New CrefReferenceSyntax(SyntaxKind.
CrefReference
, Nothing, Nothing, name, signature, asClause)
42050
Case SyntaxKind.
CrefReference
Generated\Syntax.xml.Syntax.Generated.vb (1)
33738
''' <item><description><see cref="SyntaxKind.
CrefReference
"/></description></item>
Syntax\SyntaxNormalizer.vb (1)
213
Not (tokenParent IsNot Nothing AndAlso tokenParent.Parent IsNot Nothing AndAlso tokenParent.Parent.Kind = SyntaxKind.
CrefReference
) AndAlso
Microsoft.CodeAnalysis.VisualBasic.Features (4)
AddImport\VisualBasicAddImportFeatureService.vb (1)
149
Case SyntaxKind.
CrefReference
ChangeSignature\VisualBasicChangeSignatureService.vb (3)
50
SyntaxKind.
CrefReference
,
71
SyntaxKind.
CrefReference
,
438
If vbnode.IsKind(SyntaxKind.
CrefReference
) Then
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (3)
DocumentationComments\DocCommentTests.vb (3)
11911
Dim crefs = SyntaxNodeFinder.FindNodes(Of CrefReferenceSyntax)(tree.GetRoot(), SyntaxKind.
CrefReference
)
11916
Return SyntaxNodeFinder.FindNodes(Of CrefReferenceSyntax)(tree.GetRoot(), SyntaxKind.
CrefReference
)
11980
While node IsNot Nothing AndAlso node.Kind <> SyntaxKind.
CrefReference
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
Rename\VisualBasicRenameRewriterLanguageService.vb (1)
1028
If syntax.IsKind(SyntaxKind.
CrefReference
) Then
Simplification\Simplifiers\NameSimplifier.vb (3)
437
If (name.IsParentKind(SyntaxKind.
CrefReference
)) OrElse ' cref="Nullable(Of T)"
438
(name.IsParentKind(SyntaxKind.QualifiedName) AndAlso name.Parent?.IsParentKind(SyntaxKind.
CrefReference
)) OrElse ' cref="System.Nullable(Of T)"
439
(name.IsParentKind(SyntaxKind.QualifiedName) AndAlso If(name.Parent?.IsParentKind(SyntaxKind.QualifiedName), False) AndAlso name.Parent.Parent?.IsParentKind(SyntaxKind.
CrefReference
)) Then ' cref="System.Nullable(Of T).Value"