Document that pre-expansion lint passes are deprecated
This commit is contained in:
parent
d5a9bc9476
commit
2bf56b9aa7
@ -166,7 +166,12 @@ impl LintStore {
|
|||||||
self.early_passes.push(Box::new(pass));
|
self.early_passes.push(Box::new(pass));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Used by clippy.
|
/// This lint pass is softly deprecated. It misses expanded code and has caused a few
|
||||||
|
/// errors in the past. Currently, it is only used in Clippy. New implementations
|
||||||
|
/// should avoid using this interface, as it might be removed in the future.
|
||||||
|
///
|
||||||
|
/// * See [rust#69838](https://github.com/rust-lang/rust/pull/69838)
|
||||||
|
/// * See [rust-clippy#5518](https://github.com/rust-lang/rust-clippy/pull/5518)
|
||||||
pub fn register_pre_expansion_pass(
|
pub fn register_pre_expansion_pass(
|
||||||
&mut self,
|
&mut self,
|
||||||
pass: impl Fn() -> EarlyLintPassObject + 'static + sync::Send + sync::Sync,
|
pass: impl Fn() -> EarlyLintPassObject + 'static + sync::Send + sync::Sync,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user