--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: missing (required), eof_token: EOF@0..1 "" [Whitespace(" ")] [], } ``` ## CST ``` 0: JSON_ROOT@0..1 0: (empty) 1: (empty) 2: EOF@0..1 "" [Whitespace(" ")] [] ``` ## Diagnostics ``` single_space.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected an array, an object, or a literal but instead found the end of the file. > 1 │ │ i Expected an array, an object, or a literal here. > 1 │ │ ```