File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ type cratedoc = ~{
9
9
type moddoc = ~{
10
10
id : ast_id ,
11
11
name : str ,
12
+ path: [ str ] ,
12
13
brief : option < str > ,
13
14
desc : option < str > ,
14
15
mods : modlist ,
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ fn moddoc_from_mod(
40
40
~{
41
41
id: id,
42
42
name: name,
43
+ path: [ ] ,
43
44
brief: none,
44
45
desc: none,
45
46
mods: doc:: modlist (
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ fn test_run_passes() {
42
42
topmod : ~{
43
43
id : 0 ,
44
44
name : doc. topmod . name + "two" ,
45
+ path : [ ] ,
45
46
brief : none,
46
47
desc : none,
47
48
mods : doc:: modlist ( [ ] ) ,
@@ -57,6 +58,7 @@ fn test_run_passes() {
57
58
topmod : ~{
58
59
id : 0 ,
59
60
name : doc. topmod . name + "three" ,
61
+ path : [ ] ,
60
62
brief : none,
61
63
desc : none,
62
64
mods : doc:: modlist ( [ ] ) ,
You can’t perform that action at this time.
0 commit comments