--- 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 [], r_curly_token: R_CURLY@1..2 "}" [] [], }, 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..1 2: R_CURLY@1..2 "}" [] [] 2: EOF@2..2 "" [] [] ```