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



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

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

#autocorrect(node) ⇒ Object



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

def autocorrect(node)
  new_name = node.loc.expression.source.sub(/(\W?)(\w+)/, '\\1_\\2')
  @corrections << lambda do |corrector|
    corrector.replace(node.loc.expression, new_name)
  end
end

#check_argument(variable) ⇒ Object



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

def check_argument(variable)
  return if variable.name.to_s.start_with?('_')
  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