This commit is contained in:
Aleksey Kladov 2021-12-27 16:08:35 +03:00
parent 5636bef2ec
commit 04ae18de29
3 changed files with 12 additions and 4 deletions

View file

@ -65,6 +65,10 @@ pub(crate) mod entry {
pub(crate) fn pat(p: &mut Parser) {
patterns::pattern_single(p);
}
pub(crate) fn ty(p: &mut Parser) {
types::type_(p);
}
}
}
@ -80,8 +84,6 @@ pub(crate) mod entry_points {
pub(crate) use paths::type_path as path;
pub(crate) use types::type_;
pub(crate) fn expr(p: &mut Parser) {
let _ = expressions::expr(p);
}