mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	 3583e86674
			
		
	
	
		3583e86674
		
	
	
	
	
		
			
			This whole thing changes it so that the JS and the UI both use rustc's own path printing to handle the impl IDs. This results in the format changing a little bit; full paths are used in spots where they aren't strictly necessary, and the path sometimes uses generics where the old system used the trait's own name, but it shouldn't matter since the orphan rules will prevent it anyway.
		
			
				
	
	
		
			17 lines
		
	
	
		
			761 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			761 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // issue #56018: "Implementations on Foreign Types" sidebar items should link to specific impls
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| // @has foo/trait.Foo.html
 | |
| // @has - '//div[@class="sidebar-elems"]//h3/a[@href="#foreign-impls"]' 'Implementations on Foreign Types'
 | |
| // @has - '//h2[@id="foreign-impls"]' 'Implementations on Foreign Types'
 | |
| // @has - '//*[@class="sidebar-elems"]//section//a[@href="#impl-Foo-for-u32"]' 'u32'
 | |
| // @has - '//*[@id="impl-Foo-for-u32"]//h3[@class="code-header"]' 'impl Foo for u32'
 | |
| // @has - "//*[@class=\"sidebar-elems\"]//section//a[@href=\"#impl-Foo-for-%26str\"]" "&'a str"
 | |
| // @has - "//*[@id=\"impl-Foo-for-%26str\"]//h3[@class=\"code-header\"]" "impl<'a> Foo for &'a str"
 | |
| pub trait Foo {}
 | |
| 
 | |
| impl Foo for u32 {}
 | |
| 
 | |
| impl<'a> Foo for &'a str {}
 |