12 references to StartQuoteToken
Microsoft.CodeAnalysis.VisualBasic (8)
Compilation\DocumentationComments\DocumentationCommentWalker.vb (1)
145
VisitToken(crefAttr.
StartQuoteToken
)
Generated\Syntax.xml.Main.Generated.vb (2)
5277
Dim newStartQuoteToken = DirectCast(VisitToken(node.
StartQuoteToken
).Node, InternalSyntax.PunctuationSyntax)
5278
If node.
StartQuoteToken
.Node IsNot newStartQuoteToken Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (5)
34795
return Update(name, Me.EqualsToken, Me.
StartQuoteToken
, Me.Reference, Me.EndQuoteToken)
34810
return Update(Me.Name, equalsToken, Me.
StartQuoteToken
, Me.Reference, Me.EndQuoteToken)
34840
return Update(Me.Name, Me.EqualsToken, Me.
StartQuoteToken
, reference, Me.EndQuoteToken)
34855
return Update(Me.Name, Me.EqualsToken, Me.
StartQuoteToken
, Me.Reference, endQuoteToken)
34909
If name IsNot Me.Name OrElse equalsToken <> Me.EqualsToken OrElse startQuoteToken <> Me.
StartQuoteToken
OrElse reference IsNot Me.Reference OrElse endQuoteToken <> Me.EndQuoteToken Then
Microsoft.CodeAnalysis.VisualBasic.Features (1)
Completion\CompletionProviders\CrefCompletionProvider.vb (1)
132
If token.IsChildToken(Function(x As XmlCrefAttributeSyntax) x.
StartQuoteToken
) Then
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
21660
Assert.NotNull(objectUnderTest.
startQuoteToken
)
21663
Dim withObj = objectUnderTest.WithName(objectUnderTest.Name).WithEqualsToken(objectUnderTest.EqualsToken).WithStartQuoteToken(objectUnderTest.
StartQuoteToken
).WithReference(objectUnderTest.Reference).WithEndQuoteToken(objectUnderTest.EndQuoteToken)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Classification\Worker.DocumentationCommentClassifier.vb (1)
233
AddXmlClassification(attribute.
StartQuoteToken
, ClassificationTypeNames.XmlDocCommentAttributeQuotes)