Reports continue statements.

continue statements complicate refactoring and can be confusing.

Example:


  void foo(List<String> strs) {
    for (String str : strs) {
      if (str.contains("skip")) continue;
      handleStr(str);
    }
  }