目录

exhaustive_cases

为类似枚举的类中的所有常量定义 case 子句。

此规则从 Dart 2.9 开始可用。

规则集:推荐flutter

此规则具有可用的快速修复

详情

#

对类似枚举的类的实例进行切换应该是详尽的。

类似枚举的类定义为具体的(非抽象)类,它们具有

  • 只有私有的非工厂构造函数
  • 两个或多个类型为封闭类的静态 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