Class: RuboCop::Cop::Lint::Loop

Inherits:
Base
  • Object
show all
Extended by:
AutoCorrector
Defined in:
lib/rubocop/cop/lint/loop.rb

Overview

Checks for uses of begin…​end while/until something.

Examples:


# bad

# using while
begin
  do_something
end while some_condition

# bad

# using until
begin
  do_something
end until some_condition

# good

# while replacement
loop do
  do_something
  break unless some_condition
end

# good

# until replacement
loop do
  do_something
  break if some_condition
end

Cop Safety Information:

  • The cop is unsafe because behavior can change in some cases, including if a local variable inside the loop body is accessed outside of it, or if the loop body raises a StopIteration exception (which Kernel#loop rescues).

Constant Summary collapse

MSG =
'Use `Kernel#loop` with `break` rather than `begin/end/until`(or `while`).'

Constants inherited from Base

Base::RESTRICT_ON_SEND

Instance Attribute Summary

Attributes inherited from Base

#config, #processed_source

Instance Method Summary collapse

Methods included from AutoCorrector

support_autocorrect?

Methods inherited from Base

#active_support_extensions_enabled?, #add_global_offense, #add_offense, autocorrect_incompatible_with, badge, #begin_investigation, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, cop_name, #cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, #inspect, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #parse, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version

Methods included from ExcludeLimit

#exclude_limit

Methods included from AutocorrectLogic

#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #autocorrect_with_disable_uncorrectable?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?

Methods included from IgnoredNode

#ignore_node, #ignored_node?, #part_of_ignored_node?

Methods included from Util

silence_warnings

Constructor Details

This class inherits a constructor from RuboCop::Cop::Base

Instance Method Details

#on_until_post(node) ⇒ Object



59
60
61
# File 'lib/rubocop/cop/lint/loop.rb', line 59

def on_until_post(node)
  register_offense(node)
end

#on_while_post(node) ⇒ Object



55
56
57
# File 'lib/rubocop/cop/lint/loop.rb', line 55

def on_while_post(node)
  register_offense(node)
end