--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json {"title":"\u041f\u043e\u043b\u0442\u043e\u0440\u0430 \u0417\u0435\u043c\u043b\u0435\u043a\u043e\u043f\u0430" } ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: JsonObjectValue { l_curly_token: L_CURLY@0..1 "{" [] [], json_member_list: JsonMemberList [ JsonMember { name: JsonMemberName { value_token: JSON_STRING_LITERAL@1..8 "\"title\"" [] [], }, colon_token: COLON@8..9 ":" [] [], value: JsonStringValue { value_token: JSON_STRING_LITERAL@9..109 "\"\\u041f\\u043e\\u043b\\u0442\\u043e\\u0440\\u0430 \\u0417\\u0435\\u043c\\u043b\\u0435\\u043a\\u043e\\u043f\\u0430\"" [] [Whitespace(" ")], }, }, ], r_curly_token: R_CURLY@109..110 "}" [] [], }, eof_token: EOF@110..110 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..110 0: (empty) 1: JSON_OBJECT_VALUE@0..110 0: L_CURLY@0..1 "{" [] [] 1: JSON_MEMBER_LIST@1..109 0: JSON_MEMBER@1..109 0: JSON_MEMBER_NAME@1..8 0: JSON_STRING_LITERAL@1..8 "\"title\"" [] [] 1: COLON@8..9 ":" [] [] 2: JSON_STRING_VALUE@9..109 0: JSON_STRING_LITERAL@9..109 "\"\\u041f\\u043e\\u043b\\u0442\\u043e\\u0440\\u0430 \\u0417\\u0435\\u043c\\u043b\\u0435\\u043a\\u043e\\u043f\\u0430\"" [] [Whitespace(" ")] 2: R_CURLY@109..110 "}" [] [] 2: EOF@110..110 "" [] [] ```