()
| 2000 | |
| 2001 | #[test] |
| 2002 | fn parse_jsonc_combined() { |
| 2003 | let input = "{\n // comment\n \"x\": /* inline */ 99,\n}"; |
| 2004 | let v = parse_jsonc(input); |
| 2005 | assert_eq!(v["x"], 99); |
| 2006 | } |
| 2007 | |
| 2008 | #[test] |
| 2009 | fn parse_jsonc_url_in_string_not_stripped() { |
nothing calls this directly
no test coverage detected