Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/ast/make.rs')
| -rw-r--r-- | crates/syntax/src/ast/make.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/syntax/src/ast/make.rs b/crates/syntax/src/ast/make.rs index 5494dd1d3e..93eca19c30 100644 --- a/crates/syntax/src/ast/make.rs +++ b/crates/syntax/src/ast/make.rs @@ -95,6 +95,9 @@ pub fn lifetime(text: &str) -> ast::Lifetime { pub fn ty(text: &str) -> ast::Type { ty_from_text(text) } +pub fn ty_placeholder() -> ast::Type { + ty_from_text("_") +} pub fn ty_unit() -> ast::Type { ty_from_text("()") } |