Module: RuboCop::Cop::Lint::UnusedArgument

Included in:
UnusedBlockArgument, UnusedMethodArgument, Performance::HashEachMethods
Defined in:
lib/rubocop/cop/mixin/unused_argument.rb

Overview

Common functionality for cops handling unused arguments.

Instance Method Summary collapse

Instance Method Details

#after_leaving_scope(scope, _variable_table) ⇒ Object



13
14
15
16
17
# File 'lib/rubocop/cop/mixin/unused_argument.rb', line 13

def after_leaving_scope(scope, _variable_table)
  scope.variables.each_value do |variable|
    check_argument(variable)
  end
end

#autocorrect(node) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/rubocop/cop/mixin/unused_argument.rb', line 27

def autocorrect(node)
  return if [:kwarg, :kwoptarg].include?(node.type)

  if node.blockarg_type?
    lambda do |corrector|
      range = range_with_surrounding_space(node.source_range, :left)
      range = range_with_surrounding_comma(range, :left)
      corrector.remove(range)
    end
  else
    ->(corrector) { corrector.insert_before(node.loc.name, '_') }
  end
end

#check_argument(variable) ⇒ Object



19
20
21
22
23
24
25
# File 'lib/rubocop/cop/mixin/unused_argument.rb', line 19

def check_argument(variable)
  return if variable.should_be_unused?
  return if variable.referenced?

  message = message(variable)
  add_offense(variable.declaration_node, :name, message)
end

#join_force?(force_class) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/rubocop/cop/mixin/unused_argument.rb', line 9

def join_force?(force_class)
  force_class == VariableForce
end