| 396 | /// Represents an array that may contain elements (ex. `[]`, `[5, 6]`). |
| 397 | #[derive(Debug, PartialEq, Clone)] |
| 398 | pub struct Array<'a> { |
| 399 | pub range: Range, |
| 400 | pub elements: Vec<Value<'a>>, |
| 401 | } |
| 402 | |
| 403 | /// Kind of JSONC comment. |
| 404 | #[derive(Debug, PartialEq, Clone)] |
no outgoing calls
searching dependent graphs…