add: #[rustc_lint_diagnostics]
for more context.rs
functions.
This commit is contained in:
parent
78fce795d8
commit
ce72f942d7
1 changed files with 5 additions and 0 deletions
|
@ -13,6 +13,8 @@
|
||||||
//! previous lint state is pushed onto a stack and the ast is then recursed
|
//! previous lint state is pushed onto a stack and the ast is then recursed
|
||||||
//! upon. As the ast is traversed, this keeps track of the current lint level
|
//! upon. As the ast is traversed, this keeps track of the current lint level
|
||||||
//! for all lint attributes.
|
//! for all lint attributes.
|
||||||
|
#![deny(rustc::untranslatable_diagnostic)]
|
||||||
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
||||||
|
|
||||||
use self::TargetLint::*;
|
use self::TargetLint::*;
|
||||||
|
|
||||||
|
@ -965,6 +967,7 @@ pub trait LintContext: Sized {
|
||||||
/// Note that this function should only be called for [`LintExpectationId`]s
|
/// Note that this function should only be called for [`LintExpectationId`]s
|
||||||
/// retrieved from the current lint pass. Buffered or manually created ids can
|
/// retrieved from the current lint pass. Buffered or manually created ids can
|
||||||
/// cause ICEs.
|
/// cause ICEs.
|
||||||
|
#[rustc_lint_diagnostics]
|
||||||
fn fulfill_expectation(&self, expectation: LintExpectationId) {
|
fn fulfill_expectation(&self, expectation: LintExpectationId) {
|
||||||
// We need to make sure that submitted expectation ids are correctly fulfilled suppressed
|
// We need to make sure that submitted expectation ids are correctly fulfilled suppressed
|
||||||
// and stored between compilation sessions. To not manually do these steps, we simply create
|
// and stored between compilation sessions. To not manually do these steps, we simply create
|
||||||
|
@ -1011,6 +1014,7 @@ impl<'tcx> LintContext for LateContext<'tcx> {
|
||||||
&*self.lint_store
|
&*self.lint_store
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[rustc_lint_diagnostics]
|
||||||
fn lookup<S: Into<MultiSpan>>(
|
fn lookup<S: Into<MultiSpan>>(
|
||||||
&self,
|
&self,
|
||||||
lint: &'static Lint,
|
lint: &'static Lint,
|
||||||
|
@ -1045,6 +1049,7 @@ impl LintContext for EarlyContext<'_> {
|
||||||
self.builder.lint_store()
|
self.builder.lint_store()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[rustc_lint_diagnostics]
|
||||||
fn lookup<S: Into<MultiSpan>>(
|
fn lookup<S: Into<MultiSpan>>(
|
||||||
&self,
|
&self,
|
||||||
lint: &'static Lint,
|
lint: &'static Lint,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue