aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/src/utils.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2021-03-08 12:59:54 +0000
committerKirill Bulatov <[email protected]>2021-03-08 21:59:39 +0000
commit778deb38fe7e1bac8833934224d26f44eb80a6cc (patch)
tree978ef918e70a41ef818ba12efb3e63b1e6abe2ae /crates/syntax/src/utils.rs
parent5168ab16e14679e16a472c0ab13b1bbc32dc95f3 (diff)
Better strip turbofishes
Diffstat (limited to 'crates/syntax/src/utils.rs')
-rw-r--r--crates/syntax/src/utils.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/crates/syntax/src/utils.rs b/crates/syntax/src/utils.rs
new file mode 100644
index 000000000..f4c02518b
--- /dev/null
+++ b/crates/syntax/src/utils.rs
@@ -0,0 +1,43 @@
1//! A set of utils methods to reuse on other abstraction levels
2
3use itertools::Itertools;
4
5use crate::{ast, match_ast, AstNode};
6
7pub fn path_to_string_stripping_turbo_fish(path: &ast::Path) -> String {
8 path.syntax()
9 .children()
10 .filter_map(|node| {
11 match_ast! {
12 match node {
13 ast::PathSegment(it) => {
14 Some(it.name_ref()?.to_string())
15 },
16 ast::Path(it) => {
17 Some(path_to_string_stripping_turbo_fish(&it))
18 },
19 _ => None,
20 }
21 }
22 })
23 .join("::")
24}
25
26#[cfg(test)]
27mod tests {
28 use super::path_to_string_stripping_turbo_fish;
29 use crate::ast::make;
30
31 #[test]
32 fn turbofishes_are_stripped() {
33 assert_eq!("Vec", path_to_string_stripping_turbo_fish(&make::path_from_text("Vec::<i32>")),);
34 assert_eq!(
35 "Vec::new",
36 path_to_string_stripping_turbo_fish(&make::path_from_text("Vec::<i32>::new")),
37 );
38 assert_eq!(
39 "Vec::new",
40 path_to_string_stripping_turbo_fish(&make::path_from_text("Vec::new()")),
41 );
42 }
43}