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
96
97
98
99
100
101
102
103
104
105
106
107
108
mod stub;
use crate::flags::DataType;
use std::borrow::Cow;
pub use stub::ToStub;
#[derive(Debug)]
pub struct Module {
pub name: Cow<'static, str>,
pub functions: Vec<Function>,
pub classes: Vec<Class>,
pub constants: Vec<Constant>,
}
#[derive(Debug)]
pub struct DocBlock(pub Vec<Cow<'static, str>>);
#[derive(Debug)]
pub struct Function {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub ret: Option<Retval>,
pub params: Vec<Parameter>,
}
#[derive(Debug)]
pub struct Parameter {
pub name: Cow<'static, str>,
pub ty: Option<DataType>,
pub nullable: bool,
pub default: Option<Cow<'static, str>>,
}
#[derive(Debug)]
pub struct Class {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub extends: Option<Cow<'static, str>>,
pub implements: Vec<Cow<'static, str>>,
pub properties: Vec<Property>,
pub methods: Vec<Method>,
pub constants: Vec<Constant>,
}
#[derive(Debug)]
pub struct Property {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub ty: Option<DataType>,
pub vis: Visibility,
pub static_: bool,
pub nullable: bool,
pub default: Option<Cow<'static, str>>,
}
#[derive(Debug)]
pub struct Method {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub ty: MethodType,
pub params: Vec<Parameter>,
pub retval: Option<Retval>,
pub _static: bool,
pub visibility: Visibility,
}
#[derive(Debug)]
pub struct Retval {
pub ty: DataType,
pub nullable: bool,
}
#[derive(Debug, Clone, Copy)]
pub enum MethodType {
Member,
Static,
Constructor,
}
#[derive(Debug, Clone, Copy)]
pub enum Visibility {
Private,
Protected,
Public,
}
#[derive(Debug)]
pub struct Constant {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub value: Option<Cow<'static, str>>,
}