biome_json_parser 0.5.7

Biome's JSON parser
Documentation
---
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..0 "" [] [],
}
```

## CST

```
0: JSON_ROOT@0..0
  0: (empty)
  1: (empty)
  2: EOF@0..0 "" [] []

```

## Diagnostics

```
structure_no_data.json:1:1 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 │ 
      │ 
  
```