--- source: crates/rome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json ["\u00A"] ``` ## AST ``` JsonRoot { value: JsonArrayValue { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ JsonBogusValue { items: [ ERROR_TOKEN@1..8 "\"\\u00A\"" [] [], ], }, ], r_brack_token: R_BRACK@8..9 "]" [] [], }, eof_token: EOF@9..9 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..9 0: JSON_ARRAY_VALUE@0..9 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..8 0: JSON_BOGUS_VALUE@1..8 0: ERROR_TOKEN@1..8 "\"\\u00A\"" [] [] 2: R_BRACK@8..9 "]" [] [] 1: EOF@9..9 "" [] [] ``` ## Diagnostics ``` string_incomplete_escaped_character.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected an array, an object, or a literal but instead found '"\u00A"' > 1 │ ["\u00A"] │ ^^^^^^^ i Expected an array, an object, or a literal here > 1 │ ["\u00A"] │ ^^^^^^^ string_incomplete_escaped_character.json:1:3 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Invalid unicode sequence > 1 │ ["\u00A"] │ ^^^^^ i Non hexadecimal number > 1 │ ["\u00A"] │ ^ i A unicode escape sequence must consist of 4 hexadecimal numbers: `\uXXXX`, e.g. `\u002F' for '/'. ```