exhaustive_cases
为类似枚举的类中的所有常量定义 case 子句。
此规则从 Dart 2.9 开始可用。
此规则具有可用的快速修复。
详情
#对类似枚举的类的实例进行切换应该是详尽的。
类似枚举的类定义为具体的(非抽象)类,它们具有
- 只有私有的非工厂构造函数
- 两个或多个类型为封闭类的静态 const 字段,并且
- 在定义库中没有该类的子类
应该为类似枚举的类中的所有常量定义 case 子句。
错误示例
dart
class EnumLike {
final int i;
const EnumLike._(this.i);
static const e = EnumLike._(1);
static const f = EnumLike._(2);
static const g = EnumLike._(3);
}
void bad(EnumLike e) {
// Missing case.
switch(e) { // LINT
case EnumLike.e :
print('e');
break;
case EnumLike.f :
print('f');
break;
}
}
正确示例
dart
class EnumLike {
final int i;
const EnumLike._(this.i);
static const e = EnumLike._(1);
static const f = EnumLike._(2);
static const g = EnumLike._(3);
}
void ok(EnumLike e) {
// All cases covered.
switch(e) { // OK
case EnumLike.e :
print('e');
break;
case EnumLike.f :
print('f');
break;
case EnumLike.g :
print('g');
break;
}
}
用法
#要启用 exhaustive_cases
规则,请在您的 analysis_options.yaml
文件中的 linter > rules 下添加 exhaustive_cases
analysis_options.yaml
yaml
linter:
rules:
- exhaustive_cases
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面最后更新于 2024-07-03。查看源代码或报告问题。