9 references to JsonConstructorNode
Microsoft.CodeAnalysis.Features (9)
EmbeddedLanguages\Json\IJsonNodeVisitor.cs (1)
13
void Visit(
JsonConstructorNode
node);
EmbeddedLanguages\Json\JsonParser.cs (2)
501
private
JsonConstructorNode
ParseConstructor(JsonToken token)
506
var
result = new JsonConstructorNode(
EmbeddedLanguages\Json\JsonParser.JsonNetSyntaxChecks.cs (2)
27
JsonKind.Constructor => CheckConstructor((
JsonConstructorNode
)node),
143
private static EmbeddedDiagnostic? CheckConstructor(
JsonConstructorNode
node)
EmbeddedLanguages\Json\JsonParser.StrictSyntaxChecker.cs (2)
37
JsonKind.Constructor => CheckConstructor((
JsonConstructorNode
)node),
262
private static EmbeddedDiagnostic? CheckConstructor(
JsonConstructorNode
node)
EmbeddedLanguages\Json\LanguageServices\JsonBraceMatcher.cs (1)
90
case
JsonConstructorNode
cons when Matches(cons.OpenParenToken, cons.CloseParenToken, ch):
EmbeddedLanguages\Json\LanguageServices\JsonClassifier.cs (1)
149
public void Visit(
JsonConstructorNode
node)