mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
Simplify
This commit is contained in:
parent
9f5ee155c1
commit
7619c2afea
5 changed files with 25 additions and 37 deletions
|
@ -72,12 +72,12 @@ pub(crate) struct PathCompletionCtx {
|
|||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct PathQualifierCtx {
|
||||
pub path: ast::Path,
|
||||
pub resolution: Option<PathResolution>,
|
||||
pub(crate) path: ast::Path,
|
||||
pub(crate) resolution: Option<PathResolution>,
|
||||
/// Whether this path consists solely of `super` segments
|
||||
pub is_super_chain: bool,
|
||||
pub(crate) is_super_chain: bool,
|
||||
/// Whether the qualifier comes from a use tree parent or not
|
||||
pub use_tree_parent: bool,
|
||||
pub(crate) use_tree_parent: bool,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue