| 293 | } else if (js[i] == '\\') { |
| 294 | esc = true; |
| 295 | } else if (js[i] == '"') { |
| 296 | break; |
| 297 | } |
| 298 | } |
| 299 | if (i >= (int)len) die("bad JSON: unterminated string"); |
| 300 | json_add(&d, JT_STRING, start, i, parent); |
| 301 | continue; |
| 302 | } |
no test coverage detected