File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: a5ede9d34533be86bab0fd5a255d527b2fd3cdc6
5
+ refs/heads/try: d26fc348ef1f39583dfdf2ee5b2fc37fdc67eef5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ type moddoc = {
30
30
type constdoc = {
31
31
id : ast_id ,
32
32
name : str ,
33
+ path: [ str ] ,
33
34
brief : option < str > ,
34
35
desc : option < str > ,
35
36
ty: option < str >
@@ -38,6 +39,7 @@ type constdoc = {
38
39
type fndoc = {
39
40
id : ast_id ,
40
41
name : str ,
42
+ path: [ str ] ,
41
43
brief : option < str > ,
42
44
desc : option < str > ,
43
45
args : [ argdoc ] ,
@@ -60,6 +62,7 @@ type retdoc = {
60
62
type enumdoc = {
61
63
id : ast_id ,
62
64
name : str ,
65
+ path: [ str ] ,
63
66
brief : option < str > ,
64
67
desc : option < str > ,
65
68
variants : [ variantdoc ]
@@ -74,6 +77,7 @@ type variantdoc = {
74
77
type resdoc = {
75
78
id : ast_id ,
76
79
name : str ,
80
+ path: [ str ] ,
77
81
brief : option < str > ,
78
82
desc : option < str > ,
79
83
args : [ argdoc ] ,
@@ -83,6 +87,7 @@ type resdoc = {
83
87
type ifacedoc = {
84
88
id : ast_id ,
85
89
name : str ,
90
+ path: [ str ] ,
86
91
brief : option < str > ,
87
92
desc : option < str > ,
88
93
methods : [ methoddoc ]
@@ -101,6 +106,7 @@ type methoddoc = {
101
106
type impldoc = {
102
107
id : ast_id ,
103
108
name : str ,
109
+ path: [ str ] ,
104
110
brief : option < str > ,
105
111
desc : option < str > ,
106
112
iface_ty : option < str > ,
@@ -111,6 +117,7 @@ type impldoc = {
111
117
type tydoc = {
112
118
id : ast_id ,
113
119
name : str ,
120
+ path: [ str ] ,
114
121
brief : option < str > ,
115
122
desc : option < str > ,
116
123
sig : option < str >
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ fn fndoc_from_fn(
101
101
{
102
102
id: id,
103
103
name: name,
104
+ path: [ ] ,
104
105
brief: none,
105
106
desc: none,
106
107
args: argdocs_from_args ( decl. inputs ) ,
@@ -142,6 +143,7 @@ fn constdoc_from_const(
142
143
{
143
144
id: id,
144
145
name: name,
146
+ path: [ ] ,
145
147
brief: none,
146
148
desc: none,
147
149
ty: none
@@ -163,6 +165,7 @@ fn enumdoc_from_enum(
163
165
{
164
166
id: id,
165
167
name: name,
168
+ path: [ ] ,
166
169
brief: none,
167
170
desc: none,
168
171
variants: variantdocs_from_variants ( variants)
@@ -204,6 +207,7 @@ fn resdoc_from_resource(
204
207
{
205
208
id: id,
206
209
name: name,
210
+ path: [ ] ,
207
211
brief: none,
208
212
desc: none,
209
213
args: argdocs_from_args ( decl. inputs ) ,
@@ -232,6 +236,7 @@ fn ifacedoc_from_iface(
232
236
{
233
237
id: id,
234
238
name: name,
239
+ path: [ ] ,
235
240
brief: none,
236
241
desc: none,
237
242
methods: vec:: map ( methods) { |method|
@@ -277,6 +282,7 @@ fn impldoc_from_impl(
277
282
{
278
283
id: id,
279
284
name: name,
285
+ path: [ ] ,
280
286
brief: none,
281
287
desc: none,
282
288
iface_ty: none,
@@ -329,6 +335,7 @@ fn tydoc_from_ty(
329
335
{
330
336
id: id,
331
337
name: name,
338
+ path: [ ] ,
332
339
brief: none,
333
340
desc: none,
334
341
sig: none
You can’t perform that action at this time.
0 commit comments