--- source: crates/biome_json_parser/tests/spec_test.rs expression: snapshot --- ## Input ```json [,1] ``` ## AST ``` JsonRoot { bom_token: missing (optional), value: JsonArrayValue { l_brack_token: L_BRACK@0..1 "[" [] [], elements: JsonArrayElementList [ missing element, COMMA@1..2 "," [] [], JsonNumberValue { value_token: JSON_NUMBER_LITERAL@2..3 "1" [] [], }, ], r_brack_token: R_BRACK@3..4 "]" [] [], }, eof_token: EOF@4..4 "" [] [], } ``` ## CST ``` 0: JSON_ROOT@0..4 0: (empty) 1: JSON_ARRAY_VALUE@0..4 0: L_BRACK@0..1 "[" [] [] 1: JSON_ARRAY_ELEMENT_LIST@1..3 0: (empty) 1: COMMA@1..2 "," [] [] 2: JSON_NUMBER_VALUE@2..3 0: JSON_NUMBER_LITERAL@2..3 "1" [] [] 2: R_BRACK@3..4 "]" [] [] 2: EOF@4..4 "" [] [] ``` ## Diagnostics ``` array_comma_and_number.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected an array, an object, or a literal but instead found ','. > 1 │ [,1] │ ^ i Expected an array, an object, or a literal here. > 1 │ [,1] │ ^ ```