aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand/src/name.rs
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_expand/src/name.rs
parent920e57bd153fdafeddb1dc34a11c6ef05ace2f70 (diff)
Identify methods using functions ids rather than string names
Diffstat (limited to 'crates/hir_expand/src/name.rs')
-rw-r--r--crates/hir_expand/src/name.rs3
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,