Add some debug printouts to librustc_privacy

This commit is contained in:
Niko Matsakis 2015-10-27 18:29:31 -04:00
parent a1e2a5538a
commit d0a84e0500

View file

@ -389,6 +389,7 @@ struct PrivacyVisitor<'a, 'tcx: 'a> {
external_exports: ExternalExports,
}
#[derive(Debug)]
enum PrivacyResult {
Allowable,
ExternallyDenied,
@ -645,9 +646,17 @@ impl<'a, 'tcx> PrivacyVisitor<'a, 'tcx> {
/// Guarantee that a particular definition is public. Returns a CheckResult
/// which contains any errors found. These can be reported using `report_error`.
/// If the result is `None`, no errors were found.
fn ensure_public(&self, span: Span, to_check: DefId,
source_did: Option<DefId>, msg: &str) -> CheckResult {
let id = match self.def_privacy(to_check) {
fn ensure_public(&self,
span: Span,
to_check: DefId,
source_did: Option<DefId>,
msg: &str)
-> CheckResult {
debug!("ensure_public(span={:?}, to_check={:?}, source_did={:?}, msg={:?})",
span, to_check, source_did, msg);
let def_privacy = self.def_privacy(to_check);
debug!("ensure_public: def_privacy={:?}", def_privacy);
let id = match def_privacy {
ExternallyDenied => {
return Some((span, format!("{} is private", msg), None))
}