7 references to JsonLiteralNode
Microsoft.CodeAnalysis.Features (7)
EmbeddedLanguages\Json\IJsonNodeVisitor.cs (1)
14
void Visit(
JsonLiteralNode
node);
EmbeddedLanguages\Json\JsonParser.cs (1)
257
if (child is
JsonLiteralNode
{ LiteralToken.Kind: JsonKind.StringToken })
EmbeddedLanguages\Json\JsonParser.JsonNetSyntaxChecks.cs (2)
29
JsonKind.Literal => CheckLiteral((
JsonLiteralNode
)node),
52
private static EmbeddedDiagnostic? CheckLiteral(
JsonLiteralNode
node)
EmbeddedLanguages\Json\JsonParser.StrictSyntaxChecker.cs (2)
38
JsonKind.Literal => CheckLiteral((
JsonLiteralNode
)node, allowComments),
163
private static EmbeddedDiagnostic? CheckLiteral(
JsonLiteralNode
node, bool allowComments)
EmbeddedLanguages\Json\LanguageServices\JsonClassifier.cs (1)
157
public void Visit(
JsonLiteralNode
node)