mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
internal: add prefix entry points
This commit is contained in:
parent
d3ba55bd06
commit
abc658aad0
2 changed files with 36 additions and 0 deletions
|
@ -44,6 +44,18 @@ use crate::{
|
|||
TokenSet, T,
|
||||
};
|
||||
|
||||
pub(crate) mod entry {
|
||||
use super::*;
|
||||
|
||||
pub(crate) mod prefix {
|
||||
use super::*;
|
||||
|
||||
pub(crate) fn vis(p: &mut Parser) {
|
||||
let _ = opt_visibility(p, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) mod entry_points {
|
||||
use super::*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue