--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json [{ ``` ## AST ``` JsonRoot { value: JsonArray { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ JsonObject { l_curly_token: L_CURLY@1..2 "{" [] [], json_member_list: JsonMemberList [], r_curly_token: missing (required), }, ], r_brack_token: missing (required), }, eof_token: EOF@2..2 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..2 0: JSON_ARRAY@0..2 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..2 0: JSON_OBJECT@1..2 0: L_CURLY@1..2 "{" [] [] 1: JSON_MEMBER_LIST@2..2 2: (empty) 2: (empty) 1: EOF@2..2 "" [] [] ``` ## Diagnostics ``` structure_open_array_open_object.json:1:3 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected `}` but instead the file ends > 1 │ [{ │ i the file ends here > 1 │ [{ │ ```