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