minor: Add ty_infer constructor to SyntaxFactory

This commit is contained in:
Giga Bowser 2024-12-10 12:33:32 -05:00
parent d7d68310c0
commit 21b376583a

View file

@ -18,6 +18,14 @@ impl SyntaxFactory {
make::ty(text).clone_for_update()
}
pub fn ty_infer(&self) -> ast::InferType {
let ast::Type::InferType(ast) = make::ty_placeholder().clone_for_update() else {
unreachable!()
};
ast
}
pub fn type_param(
&self,
name: ast::Name,