Checks whether token is a false or true literal. */
| 374 | |
| 375 | /** Checks whether token is a false or true literal. */ |
| 376 | static void expect_bool(jsmntok_t *tok) |
| 377 | { |
| 378 | if (!(tok->type == JSMN_PRIMITIVE && strchr("ft", input[tok->start]))) |
| 379 | error(tok, "boolean value false or true"); |
| 380 | } |
| 381 | |
| 382 | /** Checks whether token is a string or primitive. */ |
| 383 | static void expect_scalar(jsmntok_t *tok) |