--- source: crates/rome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json [0.e1] ``` ## AST ``` JsonRoot { value: JsonArrayValue { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ JsonBogusValue { items: [ ERROR_TOKEN@1..5 "0.e1" [] [], ], }, ], r_brack_token: R_BRACK@5..6 "]" [] [], }, eof_token: EOF@6..6 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..6 0: JSON_ARRAY_VALUE@0..6 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..5 0: JSON_BOGUS_VALUE@1..5 0: ERROR_TOKEN@1..5 "0.e1" [] [] 2: R_BRACK@5..6 "]" [] [] 1: EOF@6..6 "" [] [] ``` ## Diagnostics ``` number_0.e1.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × expected an array, an object, or a literal but instead found '0.e1' > 1 │ [0.e1] │ ^^^^ i Expected an array, an object, or a literal here > 1 │ [0.e1] │ ^^^^ number_0.e1.json:1:4 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Missing fraction > 1 │ [0.e1] │ ^ i Remove the `.` ```