mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
non_local_defs: indicate that the macro needs to change
aaa
This commit is contained in:
parent
5870f1ccbb
commit
c4c8bda689
@ -550,6 +550,7 @@ lint_non_local_definitions_impl = non-local `impl` definition, `impl` blocks sho
|
|||||||
.bounds = `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
.bounds = `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
||||||
.exception = items in an anonymous const item (`const _: () = {"{"} ... {"}"}`) are treated as in the same scope as the anonymous const's declaration
|
.exception = items in an anonymous const item (`const _: () = {"{"} ... {"}"}`) are treated as in the same scope as the anonymous const's declaration
|
||||||
.const_anon = use a const-anon item to suppress this lint
|
.const_anon = use a const-anon item to suppress this lint
|
||||||
|
.macro_to_change = the {$macro_kind} `{$macro_to_change}` defines the non-local `impl`, and may need to be changed
|
||||||
|
|
||||||
lint_non_local_definitions_impl_move_help =
|
lint_non_local_definitions_impl_move_help =
|
||||||
move the `impl` block outside of this {$body_kind_descr} {$depth ->
|
move the `impl` block outside of this {$body_kind_descr} {$depth ->
|
||||||
|
@ -1355,6 +1355,7 @@ pub enum NonLocalDefinitionsDiag {
|
|||||||
has_trait: bool,
|
has_trait: bool,
|
||||||
self_ty_str: String,
|
self_ty_str: String,
|
||||||
of_trait_str: Option<String>,
|
of_trait_str: Option<String>,
|
||||||
|
macro_to_change: Option<(String, &'static str)>,
|
||||||
},
|
},
|
||||||
MacroRules {
|
MacroRules {
|
||||||
depth: u32,
|
depth: u32,
|
||||||
@ -1380,6 +1381,7 @@ impl<'a> LintDiagnostic<'a, ()> for NonLocalDefinitionsDiag {
|
|||||||
has_trait,
|
has_trait,
|
||||||
self_ty_str,
|
self_ty_str,
|
||||||
of_trait_str,
|
of_trait_str,
|
||||||
|
macro_to_change,
|
||||||
} => {
|
} => {
|
||||||
diag.primary_message(fluent::lint_non_local_definitions_impl);
|
diag.primary_message(fluent::lint_non_local_definitions_impl);
|
||||||
diag.arg("depth", depth);
|
diag.arg("depth", depth);
|
||||||
@ -1390,6 +1392,12 @@ impl<'a> LintDiagnostic<'a, ()> for NonLocalDefinitionsDiag {
|
|||||||
diag.arg("of_trait_str", of_trait_str);
|
diag.arg("of_trait_str", of_trait_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some((macro_to_change, macro_kind)) = macro_to_change {
|
||||||
|
diag.arg("macro_to_change", macro_to_change);
|
||||||
|
diag.arg("macro_kind", macro_kind);
|
||||||
|
diag.note(fluent::lint_macro_to_change);
|
||||||
|
}
|
||||||
|
|
||||||
if has_trait {
|
if has_trait {
|
||||||
diag.note(fluent::lint_bounds);
|
diag.note(fluent::lint_bounds);
|
||||||
diag.note(fluent::lint_with_trait);
|
diag.note(fluent::lint_with_trait);
|
||||||
|
@ -258,6 +258,13 @@ impl<'tcx> LateLintPass<'tcx> for NonLocalDefinitions {
|
|||||||
Some((cx.tcx.def_span(parent), may_move))
|
Some((cx.tcx.def_span(parent), may_move))
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let macro_to_change =
|
||||||
|
if let ExpnKind::Macro(kind, name) = item.span.ctxt().outer_expn_data().kind {
|
||||||
|
Some((name.to_string(), kind.descr()))
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
cx.emit_span_lint(
|
cx.emit_span_lint(
|
||||||
NON_LOCAL_DEFINITIONS,
|
NON_LOCAL_DEFINITIONS,
|
||||||
ms,
|
ms,
|
||||||
@ -274,6 +281,7 @@ impl<'tcx> LateLintPass<'tcx> for NonLocalDefinitions {
|
|||||||
move_to,
|
move_to,
|
||||||
may_remove,
|
may_remove,
|
||||||
has_trait: impl_.of_trait.is_some(),
|
has_trait: impl_.of_trait.is_some(),
|
||||||
|
macro_to_change,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@ LL | non_local_macro::non_local_impl!(LocalStruct);
|
|||||||
| `Debug` is not local
|
| `Debug` is not local
|
||||||
| move the `impl` block outside of this constant `_IMPL_DEBUG`
|
| move the `impl` block outside of this constant `_IMPL_DEBUG`
|
||||||
|
|
|
|
||||||
|
= note: the macro `non_local_macro::non_local_impl` defines the non-local `impl`, and may need to be changed
|
||||||
= note: `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
= note: `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
||||||
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
|
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
|
||||||
= note: the macro `non_local_macro::non_local_impl` may come from an old version of the `non_local_macro` crate, try updating your dependency with `cargo update -p non_local_macro`
|
= note: the macro `non_local_macro::non_local_impl` may come from an old version of the `non_local_macro` crate, try updating your dependency with `cargo update -p non_local_macro`
|
||||||
|
@ -12,6 +12,7 @@ LL | impl MacroTrait for OutsideStruct {}
|
|||||||
LL | m!();
|
LL | m!();
|
||||||
| ---- in this macro invocation
|
| ---- in this macro invocation
|
||||||
|
|
|
|
||||||
|
= note: the macro `m` defines the non-local `impl`, and may need to be changed
|
||||||
= note: `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
= note: `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
|
||||||
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
|
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
|
||||||
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
|
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
|
||||||
|
Loading…
Reference in New Issue
Block a user