--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json ["a ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: JsonArrayValue { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ JsonStringValue { value_token: JSON_STRING_LITERAL@1..3 "\"a" [] [], }, ], r_brack_token: missing (required), }, eof_token: EOF@3..3 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..3 0: (empty) 1: JSON_ARRAY_VALUE@0..3 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..3 0: JSON_STRING_VALUE@1..3 0: JSON_STRING_LITERAL@1..3 "\"a" [] [] 2: (empty) 2: EOF@3..3 "" [] [] ``` ## Diagnostics ``` structure_open_array_open_string.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Missing closing quote > 1 │ ["a │ ^^ i file ends here > 1 │ ["a │ structure_open_array_open_string.json:1:4 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected `]` but instead the file ends > 1 │ ["a │ i the file ends here > 1 │ ["a │ ```