--- source: crates/rome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json ["\ ``` ## AST ``` JsonRoot { value: JsonArrayValue { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ JsonBogusValue { items: [ ERROR_TOKEN@1..3 "\"\\" [] [], ], }, ], r_brack_token: missing (required), }, eof_token: EOF@3..3 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..3 0: JSON_ARRAY_VALUE@0..3 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..3 0: JSON_BOGUS_VALUE@1..3 0: ERROR_TOKEN@1..3 "\"\\" [] [] 2: (empty) 1: EOF@3..3 "" [] [] ``` ## Diagnostics ``` string_start_escape_unclosed.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected an array, an object, or a literal but instead found '"\' > 1 │ ["\ │ ^^ i Expected an array, an object, or a literal here > 1 │ ["\ │ ^^ string_start_escape_unclosed.json:1:3 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected an escape sequence following a backslash, but found none > 1 │ ["\ │ ^ i File ends here > 1 │ ["\ │ string_start_escape_unclosed.json:1:4 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected `]` but instead the file ends > 1 │ ["\ │ i the file ends here > 1 │ ["\ │ ```