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