This commit is contained in:
Aleksey Kladov 2021-05-10 15:25:56 +03:00
parent fd109fb587
commit bf26e13cd2
2 changed files with 13 additions and 13 deletions

View file

@ -31,6 +31,9 @@ pub mod ext {
pub fn expr_todo() -> ast::Expr {
expr_from_text("todo!()")
}
pub fn empty_block_expr() -> ast::BlockExpr {
block_expr(None, None)
}
pub fn ty_bool() -> ast::Type {
ty_path(ident_path("bool"))