Class: RuboCop::Cop::Style::RedundantBegin

Inherits:
Base
  • Object
show all
Extended by:
AutoCorrector
Includes:
RangeHelp
Defined in:
lib/rubocop/cop/style/redundant_begin.rb

Overview

Checks for redundant begin blocks.

Currently it checks for code like this:

Examples:


# bad
def redundant
  begin
    ala
    bala
  rescue StandardError => e
    something
  end
end

# good
def preferred
  ala
  bala
rescue StandardError => e
  something
end

# bad
begin
  do_something
end

# good
do_something

# bad
# When using Ruby 2.5 or later.
do_something do
  begin
    something
  rescue => ex
    anything
  end
end

# good
# In Ruby 2.5 or later, you can omit `begin` in `do-end` block.
do_something do
  something
rescue => ex
  anything
end

# good
# Stabby lambdas don't support implicit `begin` in `do-end` blocks.
-> do
  begin
    foo
  rescue Bar
    baz
  end
end

Constant Summary collapse

MSG =
'Redundant `begin` block detected.'

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

#offensive_kwbegins(node) ⇒ Object



72
73
74
# File 'lib/rubocop/cop/style/redundant_begin.rb', line 72

def_node_search :offensive_kwbegins, <<~PATTERN
  [(kwbegin ...) !#allowable_kwbegin?]
PATTERN

#on_block(node) ⇒ Object Also known as: on_numblock



84
85
86
87
88
89
90
91
# File 'lib/rubocop/cop/style/redundant_begin.rb', line 84

def on_block(node)
  return if target_ruby_version < 2.5
  return if node.send_node.lambda_literal?
  return if node.braces?
  return unless node.body&.kwbegin_type?

  register_offense(node.body)
end

#on_def(node) ⇒ Object Also known as: on_defs



76
77
78
79
80
81
# File 'lib/rubocop/cop/style/redundant_begin.rb', line 76

def on_def(node)
  return unless node.body&.kwbegin_type?
  return if node.endless? && !node.body.children.one?

  register_offense(node.body)
end

#on_kwbegin(node) ⇒ Object



95
96
97
98
99
# File 'lib/rubocop/cop/style/redundant_begin.rb', line 95

def on_kwbegin(node)
  return unless (target_node = offensive_kwbegins(node).to_a.last)

  register_offense(target_node)
end