diff options
author | Phil Ellison <[email protected]> | 2021-01-01 21:11:08 +0000 |
---|---|---|
committer | Phil Ellison <[email protected]> | 2021-01-23 07:40:25 +0000 |
commit | 8c7ccdc29d071649e816030ac744338e91eb5558 (patch) | |
tree | a44984b99925dd7a5dd83ac8e8fbe9e3d42bc1cf /crates/hir_expand | |
parent | 920e57bd153fdafeddb1dc34a11c6ef05ace2f70 (diff) |
Identify methods using functions ids rather than string names
Diffstat (limited to 'crates/hir_expand')
-rw-r--r-- | crates/hir_expand/src/name.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/hir_expand/src/name.rs b/crates/hir_expand/src/name.rs index d692cec14..c7609e90d 100644 --- a/crates/hir_expand/src/name.rs +++ b/crates/hir_expand/src/name.rs | |||
@@ -186,6 +186,9 @@ pub mod known { | |||
186 | Neg, | 186 | Neg, |
187 | Not, | 187 | Not, |
188 | Index, | 188 | Index, |
189 | // Components of known path (function name) | ||
190 | filter_map, | ||
191 | next, | ||
189 | // Builtin macros | 192 | // Builtin macros |
190 | file, | 193 | file, |
191 | column, | 194 | column, |