aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/json_handler.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-01-30 14:18:04 +0100
committerJay Berkenbilt <ejb@ql.org>2022-01-31 21:57:45 +0100
commitce3406e93f0de0946d2abed6179579caf1433d4e (patch)
tree71959581731cb1ddcafa0866c87b2346c177dffb /libtests/json_handler.cc
parent11a86e444da4ffcb0d5aa5203fda2d0ebc001a7c (diff)
downloadqpdf-ce3406e93f0de0946d2abed6179579caf1433d4e.tar.zst
JSONHandler: pass JSON object to dict start function
If some keys depend on others, we have to check up front since there is no control of what order key handlers will be called. Anyway, keys are unordered in json, so we don't want to depend on ordering.
Diffstat (limited to 'libtests/json_handler.cc')
-rw-r--r--libtests/json_handler.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/libtests/json_handler.cc b/libtests/json_handler.cc
index 618395d5..dcc8e66e 100644
--- a/libtests/json_handler.cc
+++ b/libtests/json_handler.cc
@@ -49,8 +49,7 @@ static std::shared_ptr<JSONHandler> make_all_handler()
{
auto h = std::make_shared<JSONHandler>();
h->addDictHandlers(
- make_print_message("dict begin"),
- make_print_message("dict end"));
+ print_json, make_print_message("dict end"));
auto h1 = std::make_shared<JSONHandler>();
h1->addStringHandler(print_string);
h->addDictKeyHandler("one", h1);
@@ -77,13 +76,11 @@ static std::shared_ptr<JSONHandler> make_all_handler()
h5);
auto h6 = std::make_shared<JSONHandler>();
h6->addDictHandlers(
- make_print_message("dict begin"),
- make_print_message("dict end"));
+ print_json, make_print_message("dict end"));
auto h6a = std::make_shared<JSONHandler>();
h6->addDictKeyHandler("a", h6a);
h6a->addDictHandlers(
- make_print_message("dict begin"),
- make_print_message("dict end"));
+ print_json, make_print_message("dict end"));
auto h6ab = std::make_shared<JSONHandler>();
h6a->addDictKeyHandler("b", h6ab);
auto h6ax = std::make_shared<JSONHandler>();