@ -769,6 +769,8 @@ struct JsonParser final {
return fail("expected ',' in object, got " + esc(ch));
ch = get_next_token();
if (ch == '}')
break;
}
return data;
@ -792,6 +794,8 @@ struct JsonParser final {
return fail("expected ',' in list, got " + esc(ch));
if (ch == ']')
(void)ch;