File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #![ allow( dead_code) ]
2+
13mod error;
24mod feature;
35
@@ -53,7 +55,7 @@ impl LoadedModule {
5355 }
5456
5557 Module {
56- identifier : self . config . identifier ,
58+ identifier : self . config . identifier . clone ( ) ,
5759 name : self . config . name ,
5860 description : self . config . description ,
5961 documentation : self . config . documentation ,
@@ -67,6 +69,7 @@ impl LoadedModule {
6769 definition_data_types : self . data_types ,
6870 configurations : self . configurations ,
6971 definitions : self . definitions ,
72+ definition_source : self . config . identifier ,
7073 }
7174 }
7275}
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ mod tests {
168168 definition_data_types : Vec :: new ( ) ,
169169 configurations : Vec :: new ( ) ,
170170 definitions : Vec :: new ( ) ,
171+ definition_source : identifier. to_string ( )
171172 }
172173 }
173174
You can’t perform that action at this time.
0 commit comments