mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 f36c5af359
			
		
	
	
		f36c5af359
		
	
	
	
	
		
			
			This change uses the same "exact" paths as trait implementors and type alias inlining to track items with multiple reachable paths. This way, if you search for `vec`, you get only the `std` exports of it, and not the one from `alloc`. It still includes all the items in the search index so that you can search for them by all available paths. For example, try `core::option` and `std::option`, and notice that the results page doesn't show duplicates, but still shows all the items in their respective crates.
		
			
				
	
	
		
			23 lines
		
	
	
		
			431 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			431 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // exact-check
 | |
| 
 | |
| const EXPECTED = [
 | |
|     {
 | |
|         'query': 'Subscriber',
 | |
|         'others': [
 | |
|             { 'path': 'foo', 'name': 'Subscriber' },
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'fmt Subscriber',
 | |
|         'others': [
 | |
|             { 'path': 'foo::fmt', 'name': 'Subscriber' },
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'AnotherOne',
 | |
|         'others': [
 | |
|             { 'path': 'foo', 'name': 'AnotherOne' },
 | |
|         ],
 | |
|     },
 | |
| ];
 |