--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json {, ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: JsonObjectValue { l_curly_token: L_CURLY@0..1 "{" [] [], json_member_list: JsonMemberList [ missing element, COMMA@1..2 "," [] [], ], r_curly_token: missing (required), }, eof_token: EOF@2..2 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..2 0: (empty) 1: JSON_OBJECT_VALUE@0..2 0: L_CURLY@0..1 "{" [] [] 1: JSON_MEMBER_LIST@1..2 0: (empty) 1: COMMA@1..2 "," [] [] 2: (empty) 2: EOF@2..2 "" [] [] ``` ## Diagnostics ``` structure_open_object_comma.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected a property but instead found ','. > 1 │ {, │ ^ i Expected a property here. > 1 │ {, │ ^ structure_open_object_comma.json:1:3 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected a property but instead found the end of the file. > 1 │ {, │ i Expected a property here. > 1 │ {, │ ```