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

Included in:
UnusedBlockArgument, UnusedMethodArgument
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



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

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

#autocorrect(node) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/rubocop/cop/mixin/unused_argument.rb', line 26

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

  @corrections << lambda do |corrector|
    corrector.insert_before(node.loc.name, '_')
  end
end

#check_argument(variable) ⇒ Object



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

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)


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

def join_force?(force_class)
  force_class == VariableForce
end