diff options
author | Aleksey Kladov <[email protected]> | 2020-04-29 13:49:54 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-29 13:51:44 +0100 |
commit | b4dd4752570d5f1ba24f7ffda69be4b1c935cd04 (patch) | |
tree | d922c9af05c682086d7a3f6f93c0fed51327ee0d /crates/ra_syntax/src/ast | |
parent | c3dfeba165e4d13821bba34d21cdc5242ea2fa71 (diff) |
More principled approach for finding From trait
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/make.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_syntax/src/ast/make.rs b/crates/ra_syntax/src/ast/make.rs index ee0f5cc40..492088353 100644 --- a/crates/ra_syntax/src/ast/make.rs +++ b/crates/ra_syntax/src/ast/make.rs | |||
@@ -22,8 +22,7 @@ pub fn path_unqualified(segment: ast::PathSegment) -> ast::Path { | |||
22 | pub fn path_qualified(qual: ast::Path, segment: ast::PathSegment) -> ast::Path { | 22 | pub fn path_qualified(qual: ast::Path, segment: ast::PathSegment) -> ast::Path { |
23 | path_from_text(&format!("{}::{}", qual, segment)) | 23 | path_from_text(&format!("{}::{}", qual, segment)) |
24 | } | 24 | } |
25 | 25 | fn path_from_text(text: &str) -> ast::Path { | |
26 | pub fn path_from_text(text: &str) -> ast::Path { | ||
27 | ast_from_text(text) | 26 | ast_from_text(text) |
28 | } | 27 | } |
29 | 28 | ||