16 references to StartQuoteToken
Microsoft.CodeAnalysis.VisualBasic (6)
Compilation\DocumentationComments\DocumentationCommentWalker.vb (1)
248
VisitToken(str.
StartQuoteToken
)
Generated\Syntax.xml.Main.Generated.vb (2)
4869
Dim newStartQuoteToken = DirectCast(VisitToken(node.
StartQuoteToken
).Node, InternalSyntax.PunctuationSyntax)
4870
If node.
StartQuoteToken
.Node IsNot newStartQuoteToken Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (3)
31740
return Update(Me.
StartQuoteToken
, textTokens, Me.EndQuoteToken)
31759
return Update(Me.
StartQuoteToken
, Me.TextTokens, endQuoteToken)
31799
If startQuoteToken <> Me.
StartQuoteToken
OrElse textTokens <> Me.TextTokens OrElse endQuoteToken <> Me.EndQuoteToken Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
FormattingHelpers.vb (2)
40
(DirectCast(token.Parent, XmlStringSyntax).
StartQuoteToken
.Equals(token) OrElse
54
Not DirectCast(token.Parent, XmlStringSyntax).
StartQuoteToken
.Equals(token) AndAlso
Microsoft.CodeAnalysis.VisualBasic.Features (2)
Completion\CompletionProviders\CrefCompletionProvider.vb (1)
144
If xmlName?.LocalName.ValueText = "cref" AndAlso xmlValue?.
StartQuoteToken
= token Then
Completion\CompletionProviders\XmlDocCommentCompletionProvider.vb (1)
257
If (targetToken.IsChildToken(Function(s As XmlStringSyntax) s.
StartQuoteToken
) AndAlso targetToken.Parent.IsParentKind(SyntaxKind.XmlAttribute)) OrElse
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
21380
Assert.NotNull(objectUnderTest.
startQuoteToken
)
21382
Dim withObj = objectUnderTest.WithStartQuoteToken(objectUnderTest.
StartQuoteToken
).WithTextTokens(objectUnderTest.TextTokens).WithEndQuoteToken(objectUnderTest.EndQuoteToken)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
Classification\Worker.DocumentationCommentClassifier.vb (1)
251
AddXmlClassification(node.
StartQuoteToken
, ClassificationTypeNames.XmlDocCommentAttributeQuotes)
Classification\Worker.XmlClassifier.vb (1)
150
AddTokenClassification(node.
StartQuoteToken
, ClassificationTypeNames.XmlLiteralAttributeQuotes)
Formatting\FormattingHelpers.vb (2)
40
(DirectCast(token.Parent, XmlStringSyntax).
StartQuoteToken
.Equals(token) OrElse
54
Not DirectCast(token.Parent, XmlStringSyntax).
StartQuoteToken
.Equals(token) AndAlso