@@ -169,18 +169,18 @@ impl<D> GraphEdges<D> {
169
169
}
170
170
171
171
/// Returns all files imported by the given file
172
- pub fn imports ( & self , file : & Path ) -> HashSet < & PathBuf > {
172
+ pub fn imports ( & self , file : & Path ) -> HashSet < & Path > {
173
173
if let Some ( start) = self . indices . get ( file) . copied ( ) {
174
- NodesIter :: new ( start, self ) . skip ( 1 ) . map ( move |idx| & self . rev_indices [ & idx] ) . collect ( )
174
+ NodesIter :: new ( start, self ) . skip ( 1 ) . map ( move |idx| & * self . rev_indices [ & idx] ) . collect ( )
175
175
} else {
176
176
HashSet :: new ( )
177
177
}
178
178
}
179
179
180
180
/// Returns all files that import the given file
181
- pub fn importers ( & self , file : & Path ) -> HashSet < & PathBuf > {
181
+ pub fn importers ( & self , file : & Path ) -> HashSet < & Path > {
182
182
if let Some ( start) = self . indices . get ( file) . copied ( ) {
183
- self . rev_edges [ start] . iter ( ) . map ( move |idx| & self . rev_indices [ idx] ) . collect ( )
183
+ self . rev_edges [ start] . iter ( ) . map ( move |idx| & * self . rev_indices [ idx] ) . collect ( )
184
184
} else {
185
185
HashSet :: new ( )
186
186
}
@@ -192,7 +192,7 @@ impl<D> GraphEdges<D> {
192
192
}
193
193
194
194
/// Returns the path of the given node
195
- pub fn node_path ( & self , id : usize ) -> & PathBuf {
195
+ pub fn node_path ( & self , id : usize ) -> & Path {
196
196
& self . rev_indices [ & id]
197
197
}
198
198
@@ -327,7 +327,7 @@ impl<L: Language, D: ParsedSource<Language = L>> Graph<D> {
327
327
}
328
328
329
329
/// Returns all files imported by the given file
330
- pub fn imports ( & self , path : & Path ) -> HashSet < & PathBuf > {
330
+ pub fn imports ( & self , path : & Path ) -> HashSet < & Path > {
331
331
self . edges . imports ( path)
332
332
}
333
333
@@ -1121,7 +1121,7 @@ impl<D: ParsedSource> Node<D> {
1121
1121
& self . source . content
1122
1122
}
1123
1123
1124
- pub fn unpack ( & self ) -> ( & PathBuf , & Source ) {
1124
+ pub fn unpack ( & self ) -> ( & Path , & Source ) {
1125
1125
( & self . path , & self . source )
1126
1126
}
1127
1127
}
@@ -1199,8 +1199,8 @@ mod tests {
1199
1199
let dapp_test = graph. node ( 1 ) ;
1200
1200
assert_eq ! ( dapp_test. path, paths. sources. join( "Dapp.t.sol" ) ) ;
1201
1201
assert_eq ! (
1202
- dapp_test. data. imports. iter( ) . map( |i| i. data( ) . path( ) ) . collect:: <Vec <& PathBuf >>( ) ,
1203
- vec![ & PathBuf :: from ( "ds-test/test.sol" ) , & PathBuf :: from ( "./Dapp.sol" ) ]
1202
+ dapp_test. data. imports. iter( ) . map( |i| i. data( ) . path( ) ) . collect:: <Vec <& Path >>( ) ,
1203
+ vec![ Path :: new ( "ds-test/test.sol" ) , Path :: new ( "./Dapp.sol" ) ]
1204
1204
) ;
1205
1205
assert_eq ! ( graph. imported_nodes( 1 ) . to_vec( ) , vec![ 2 , 0 ] ) ;
1206
1206
}
0 commit comments