()
| 478 | |
| 479 | #[test] |
| 480 | fn parse_array_empty() { |
| 481 | let result = parse_object_literal_array("[]").unwrap().unwrap(); |
| 482 | assert!(result.is_empty()); |
| 483 | } |
| 484 | |
| 485 | #[test] |
| 486 | fn parse_array_not_array_returns_none() { |
nothing calls this directly
no test coverage detected