mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
Use pub(crate)
This commit is contained in:
parent
8b4cbbb87c
commit
40638b16c8
1 changed files with 3 additions and 3 deletions
|
@ -19,9 +19,9 @@ use crate::Fix;
|
|||
use super::fixes::DiagnosticWithFix;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct UnlinkedFile {
|
||||
pub file_id: FileId,
|
||||
pub node: SyntaxNodePtr,
|
||||
pub(crate) struct UnlinkedFile {
|
||||
pub(crate) file_id: FileId,
|
||||
pub(crate) node: SyntaxNodePtr,
|
||||
}
|
||||
|
||||
impl Diagnostic for UnlinkedFile {
|
||||
|
|
Loading…
Reference in a new issue