mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
move ty
This commit is contained in:
parent
5636bef2ec
commit
04ae18de29
3 changed files with 12 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue