Use pub(crate)

This commit is contained in:
Jonas Schievink 2021-03-15 01:46:59 +01:00
parent 8b4cbbb87c
commit 40638b16c8

View file

@ -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 {