1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// This file is not used yet. But by adding a parser module that implements a
// function to turn the tokens into these structs, and another function to go
// from the nodes to tokens, we can implement serialization and deserialization
// of JSON files.
// It's also possible to implement a Visitor API to write lints for JSON files.