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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
use super::common::ImmutableString;
#[derive(Debug, PartialEq, Clone)]
pub enum Value {
StringLit(StringLit),
NumberLit(NumberLit),
BooleanLit(BooleanLit),
Object(Object),
Array(Array),
NullKeyword(NullKeyword),
}
#[derive(Debug, PartialEq, Clone)]
pub struct Range {
pub pos: usize,
pub end: usize,
pub start_line: usize,
pub end_line: usize,
}
#[derive(Debug, PartialEq, Clone)]
pub struct StringLit {
pub range: Range,
pub value: ImmutableString,
}
#[derive(Debug, PartialEq, Clone)]
pub struct NumberLit {
pub range: Range,
pub value: ImmutableString,
}
#[derive(Debug, PartialEq, Clone)]
pub struct BooleanLit {
pub range: Range,
pub value: bool,
}
#[derive(Debug, PartialEq, Clone)]
pub struct NullKeyword {
pub range: Range,
}
#[derive(Debug, PartialEq, Clone)]
pub struct Object {
pub range: Range,
pub properties: Vec<ObjectProp>,
}
#[derive(Debug, PartialEq, Clone)]
pub struct ObjectProp {
pub range: Range,
pub name: StringLit,
pub value: Value,
}
#[derive(Debug, PartialEq, Clone)]
pub struct Array {
pub range: Range,
pub elements: Vec<Value>,
}
#[derive(Debug, PartialEq, Clone)]
pub enum Comment {
Line(CommentLine),
Block(CommentBlock)
}
#[derive(Debug, PartialEq, Clone)]
pub struct CommentLine {
pub range: Range,
pub text: ImmutableString,
}
#[derive(Debug, PartialEq, Clone)]
pub struct CommentBlock {
pub range: Range,
pub text: ImmutableString,
}