--- source: crates/rome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json 1] ``` ## AST ``` JsonRoot { value: JsonArrayValue { l_brack_token: missing (required), elements: JsonArrayElementList [ JsonNumberValue { value_token: JSON_NUMBER_LITERAL@0..1 "1" [] [], }, missing separator, JsonBogusValue { items: [ R_BRACK@1..2 "]" [] [], ], }, ], r_brack_token: missing (required), }, eof_token: EOF@2..2 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..2 0: JSON_ARRAY_VALUE@0..2 0: (empty) 1: JSON_ARRAY_ELEMENT_LIST@0..2 0: JSON_NUMBER_VALUE@0..1 0: JSON_NUMBER_LITERAL@0..1 "1" [] [] 1: (empty) 2: JSON_BOGUS_VALUE@1..2 0: R_BRACK@1..2 "]" [] [] 2: (empty) 1: EOF@2..2 "" [] [] ``` ## Diagnostics ``` structure_close_unopened_array.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × End of file expected > 1 │ 1] │ ^ i Use an array for a sequence of values: `[1, 2]` ```