()
| 495 | |
| 496 | #[test] |
| 497 | fn parse_array_trailing_comma() { |
| 498 | let result = parse_object_literal_array("[{ a: 1 }, { b: 2 },]") |
| 499 | .unwrap() |
| 500 | .unwrap(); |
| 501 | assert_eq!(result.len(), 2); |
| 502 | } |
| 503 | } |
nothing calls this directly
no test coverage detected