| 983 | |
| 984 | |
| 985 | static int print_path(String *str, const json_path_t *p) |
| 986 | { |
| 987 | return str->append('\'') || |
| 988 | str->append_for_single_quote((const char *) p->s.c_str, |
| 989 | p->s.str_end - p->s.c_str) || |
| 990 | str->append('\''); |
| 991 | } |
| 992 | |
| 993 | |
| 994 | /* |
no test coverage detected