forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#133077 - cuviper:beta-next, r=cuviper
[beta] backports - Use completion item indices instead of property matching rust-lang#132987, rust-lang/rust-analyzer#18503 - Reject raw lifetime followed by `'`, like regular lifetimes do rust-lang#132341 - Only disable cache if predicate has opaques within it rust-lang#132625 - rustdoc-search: case-sensitive only when capitals are used rust-lang#133043 - (ci) Update macOS Xcode to 15 rust-lang#131570 r? cuviper
- Loading branch information
Showing
14 changed files
with
180 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const EXPECTED = [ | ||
{ | ||
'query': 'write', | ||
'others': [ | ||
{ 'path': 'std::fmt', 'name': 'write' }, | ||
{ 'path': 'std::fs', 'name': 'write' }, | ||
{ 'path': 'std::ptr', 'name': 'write' }, | ||
{ 'path': 'std::fmt', 'name': 'Write' }, | ||
{ 'path': 'std::io', 'name': 'Write' }, | ||
{ 'path': 'std::hash::Hasher', 'name': 'write' }, | ||
], | ||
}, | ||
{ | ||
'query': 'Write', | ||
'others': [ | ||
{ 'path': 'std::fmt', 'name': 'Write' }, | ||
{ 'path': 'std::io', 'name': 'Write' }, | ||
{ 'path': 'std::fmt', 'name': 'write' }, | ||
{ 'path': 'std::fs', 'name': 'write' }, | ||
{ 'path': 'std::ptr', 'name': 'write' }, | ||
{ 'path': 'std::hash::Hasher', 'name': 'write' }, | ||
], | ||
}, | ||
]; |
Oops, something went wrong.