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