aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax
diff options
context:
space:
mode:
authorFedor Sakharov <[email protected]>2020-05-14 08:14:04 +0100
committerFedor Sakharov <[email protected]>2020-05-14 08:14:04 +0100
commit7e9396c7ebd8b6b245086c2292e100200c8adb19 (patch)
treefe033c4dbe2a86e2f3bbf57945af20a4f5d7f8f6 /crates/ra_syntax
parenta55ad203888b5e43cf6cbf015d562d7bd1abe0bb (diff)
Change type_arg to type_ref func
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r--crates/ra_syntax/src/ast/make.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_syntax/src/ast/make.rs b/crates/ra_syntax/src/ast/make.rs
index 8981cbe33..d0e960fb4 100644
--- a/crates/ra_syntax/src/ast/make.rs
+++ b/crates/ra_syntax/src/ast/make.rs
@@ -13,8 +13,8 @@ pub fn name_ref(text: &str) -> ast::NameRef {
13 ast_from_text(&format!("fn f() {{ {}; }}", text)) 13 ast_from_text(&format!("fn f() {{ {}; }}", text))
14} 14}
15 15
16pub fn type_arg(text: &str) -> ast::TypeArg { 16pub fn type_ref(text: &str) -> ast::TypeRef {
17 ast_from_text(&format!("impl F<{}> for G {{}}", text)) 17 ast_from_text(&format!("impl {} for D {{}};", text))
18} 18}
19 19
20pub fn path_segment(name_ref: ast::NameRef) -> ast::PathSegment { 20pub fn path_segment(name_ref: ast::NameRef) -> ast::PathSegment {