Struct rustc_trans::lint::LateContext
[−]
[src]
pub struct LateContext<'a, 'tcx> where 'tcx: 'a {
pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
pub krate: &'a Crate,
pub access_levels: &'a AccessLevels<u32>,
// some fields omitted
}
rustc_private
)Context for lint checking after type checking.
Fields
tcx: TyCtxt<'a, 'tcx, 'tcx>
rustc_private
)Type context we're checking in.
krate: &'a Crate
rustc_private
)The crate being checked.
access_levels: &'a AccessLevels<u32>
rustc_private
)Items accessible from the crate being checked.
Trait Implementations
impl<'a, 'tcx> LintContext for LateContext<'a, 'tcx>
fn sess(&self) -> &Session
rustc_private
)Get the overall compiler Session
object.
fn lints(&self) -> &LintStore
fn mut_lints(&mut self) -> &mut LintStore
fn level_stack(&mut self) -> &mut Vec<(LintId, (Level, LintSource))>
fn enter_attrs(&mut self, attrs: &[Spanned<Attribute_>])
fn exit_attrs(&mut self, attrs: &[Spanned<Attribute_>])
fn current_level(&self, lint: &'static Lint) -> Level
Get the level of lint
at the current position of the lint traversal. Read more
fn level_src(&self, lint: &'static Lint) -> Option<(Level, LintSource)>
fn lookup_and_emit(&self, lint: &'static Lint, span: Option<Span>, msg: &str)
fn lookup(&self, lint: &'static Lint, span: Option<Span>, msg: &str) -> DiagnosticBuilder
fn span_lint(&self, lint: &'static Lint, span: Span, msg: &str)
Emit a lint at the appropriate level, for a particular span.
fn struct_span_lint(&self, lint: &'static Lint, span: Span, msg: &str) -> DiagnosticBuilder
fn span_lint_note(&self, lint: &'static Lint, span: Span, msg: &str, note_span: Span, note: &str)
Emit a lint and note at the appropriate level, for a particular span.
fn span_lint_help(&self, lint: &'static Lint, span: Span, msg: &str, help: &str)
Emit a lint and help at the appropriate level, for a particular span.
fn lint(&self, lint: &'static Lint, msg: &str)
Emit a lint at the appropriate level, with no associated span.
fn with_lint_attrs<F>(&mut self, attrs: &[Spanned<Attribute_>], f: F) where F: FnOnce(&mut Self) -> ()
Merge the lints specified by any lint attributes into the current lint context, call the provided function, then reset the lints in effect to their previous state. Read more
impl<'a, 'tcx, 'v> Visitor<'v> for LateContext<'a, 'tcx>
fn visit_nested_item(&mut self, item: ItemId)
rustc_private
)Because lints are scoped lexically, we want to walk nested items in the context of the outer item, so enable deep-walking.
fn visit_item(&mut self, it: &Item)
Visit the top-level item and (optionally) nested items. See visit_nested_item
for details. Read more