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