--- source: crates/rome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json {"a" ``` ## AST ``` JsonRoot { value: JsonObjectValue { l_curly_token: L_CURLY@0..1 "{" [] [], json_member_list: JsonMemberList [ JsonMember { name: JsonMemberName { value_token: JSON_STRING_LITERAL@1..4 "\"a\"" [] [], }, colon_token: missing (required), value: missing (required), }, ], r_curly_token: missing (required), }, eof_token: EOF@4..4 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..4 0: JSON_OBJECT_VALUE@0..4 0: L_CURLY@0..1 "{" [] [] 1: JSON_MEMBER_LIST@1..4 0: JSON_MEMBER@1..4 0: JSON_MEMBER_NAME@1..4 0: JSON_STRING_LITERAL@1..4 "\"a\"" [] [] 1: (empty) 2: (empty) 2: (empty) 1: EOF@4..4 "" [] [] ``` ## Diagnostics ``` object_no-colon.json:1:5 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected `:` but instead the file ends > 1 │ {"a" │ i the file ends here > 1 │ {"a" │ ```