annotate_redeclares
注释重新声明的成员。
此规则目前处于实验阶段,从 Dart 3.2 开始可用。
此规则提供快速修复。
详细信息
#请注释重新声明的成员。
此做法提高了代码可读性,并有助于防止无意中重新声明成员,或者在成员不再重新声明时感到意外(例如由于重命名重构)。
错误
dart
class C {
void f() { }
}
extension type E(C c) implements C {
void f() {
...
}
}
正确
dart
import 'package:meta/meta.dart';
class C {
void f() { }
}
extension type E(C c) implements C {
@redeclare
void f() {
...
}
}
用法
#要启用 annotate_redeclares
规则,请在 linter > rules 下的 analysis_options.yaml
文件中添加 annotate_redeclares
。
analysis_options.yaml
yaml
linter:
rules:
- annotate_redeclares
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新时间为 2024-07-03。 查看源代码 或 报告问题.