--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json <.> ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: JsonBogusValue { items: [ ERROR_TOKEN@0..1 "<" [] [], ERROR_TOKEN@1..2 "." [] [], ERROR_TOKEN@2..3 ">" [] [], ], }, eof_token: EOF@3..3 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..3 0: (empty) 1: JSON_BOGUS_VALUE@0..3 0: ERROR_TOKEN@0..1 "<" [] [] 1: ERROR_TOKEN@1..2 "." [] [] 2: ERROR_TOKEN@2..3 ">" [] [] 2: EOF@3..3 "" [] [] ``` ## Diagnostics ``` structure_angle_bracket_..json:1:1 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × unexpected character `<` > 1 │ <.> │ ^ structure_angle_bracket_..json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × unexpected character `.` > 1 │ <.> │ ^ structure_angle_bracket_..json:1:3 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × unexpected character `>` > 1 │ <.> │ ^ ```