private static SyntaxNode JObject(JSONParser.ObjectContext @object, Func <ParserRuleContext, Scope, SyntaxNode> continuation, Scope scope) { return(ParsePairs(@object.pair(), continuation, scope)); }
public override ParserNode VisitObject(JSONParser.ObjectContext context) => GetNode(context, OBJECT, context.pair());