Auto merge of #47095 - leodasvacas:clarify-is-import, r=jseyfried

Clarify where `is_import` is used

So it's not mistaken for dead code.
This commit is contained in:
bors 2018-01-01 10:02:45 +00:00
commit bc1dda43ec

View file

@ -132,6 +132,7 @@ pub struct Export {
/// We include non-`pub` exports for hygienic macros that get used from extern crates.
pub vis: ty::Visibility,
/// True if from a `use` or and `extern crate`.
/// Used in rustdoc.
pub is_import: bool,
}