rename: UnknownTool
to UnknownToolInScopedLint
This commit is contained in:
parent
5d302d1148
commit
dbe838079c
@ -412,5 +412,5 @@ lint_reason_must_be_string_literal = reason must be a string literal
|
|||||||
|
|
||||||
lint_reason_must_come_last = reason in lint attribute must come last
|
lint_reason_must_come_last = reason in lint attribute must come last
|
||||||
|
|
||||||
lint_unknown_tool = unknown tool name `{$tool_name}` found in scoped lint: `{$tool_name}::{$lint_name}`
|
lint_unknown_tool_in_scoped_lint = unknown tool name `{$tool_name}` found in scoped lint: `{$tool_name}::{$lint_name}`
|
||||||
.help = add `#![register_tool({$tool_name})]` to the crate root
|
.help = add `#![register_tool({$tool_name})]` to the crate root
|
||||||
|
@ -61,8 +61,8 @@ pub enum MalformedAttributeSub {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(SessionDiagnostic)]
|
#[derive(SessionDiagnostic)]
|
||||||
#[error(lint::unknown_tool, code = "E0710")]
|
#[error(lint::unknown_tool_in_scoped_lint, code = "E0710")]
|
||||||
pub struct UnknownTool {
|
pub struct UnknownToolInScopedLint {
|
||||||
#[primary_span]
|
#[primary_span]
|
||||||
pub span: Option<Span>,
|
pub span: Option<Span>,
|
||||||
pub tool_name: Symbol,
|
pub tool_name: Symbol,
|
||||||
|
@ -28,7 +28,7 @@ use tracing::debug;
|
|||||||
|
|
||||||
use crate::errors::{
|
use crate::errors::{
|
||||||
MalformedAttribute, MalformedAttributeSub, OverruledAttribute, OverruledAttributeSub,
|
MalformedAttribute, MalformedAttributeSub, OverruledAttribute, OverruledAttributeSub,
|
||||||
UnknownTool,
|
UnknownToolInScopedLint,
|
||||||
};
|
};
|
||||||
|
|
||||||
fn lint_levels(tcx: TyCtxt<'_>, (): ()) -> LintLevelMap {
|
fn lint_levels(tcx: TyCtxt<'_>, (): ()) -> LintLevelMap {
|
||||||
@ -510,7 +510,7 @@ impl<'s> LintLevelsBuilder<'s> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&CheckLintNameResult::NoTool => {
|
&CheckLintNameResult::NoTool => {
|
||||||
sess.emit_err(UnknownTool {
|
sess.emit_err(UnknownToolInScopedLint {
|
||||||
span: tool_ident.map(|ident| ident.span),
|
span: tool_ident.map(|ident| ident.span),
|
||||||
tool_name: tool_name.unwrap(),
|
tool_name: tool_name.unwrap(),
|
||||||
lint_name: pprust::path_to_string(&meta_item.path),
|
lint_name: pprust::path_to_string(&meta_item.path),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user