aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def
diff options
context:
space:
mode:
authorPhil Ellison <[email protected]>2021-01-01 21:11:08 +0000
committerPhil Ellison <[email protected]>2021-01-23 07:40:25 +0000
commit8c7ccdc29d071649e816030ac744338e91eb5558 (patch)
treea44984b99925dd7a5dd83ac8e8fbe9e3d42bc1cf /crates/hir_def
parent920e57bd153fdafeddb1dc34a11c6ef05ace2f70 (diff)
Identify methods using functions ids rather than string names
Diffstat (limited to 'crates/hir_def')
-rw-r--r--crates/hir_def/src/path.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/hir_def/src/path.rs b/crates/hir_def/src/path.rs
index e34cd7f2f..84ea09b53 100644
--- a/crates/hir_def/src/path.rs
+++ b/crates/hir_def/src/path.rs
@@ -304,6 +304,7 @@ pub use hir_expand::name as __name;
304#[macro_export] 304#[macro_export]
305macro_rules! __known_path { 305macro_rules! __known_path {
306 (core::iter::IntoIterator) => {}; 306 (core::iter::IntoIterator) => {};
307 (core::iter::Iterator) => {};
307 (core::result::Result) => {}; 308 (core::result::Result) => {};
308 (core::option::Option) => {}; 309 (core::option::Option) => {};
309 (core::ops::Range) => {}; 310 (core::ops::Range) => {};