class RuboCop::Cop::Style::EmptyLiteral

Checks for the use of a method, the result of which would be a literal, like an empty array, hash, or string.

@example

# bad
a = Array.new
h = Hash.new
s = String.new

# good
a = []
h = {}
s = ''

Constants

ARR_MSG
HASH_MSG
RESTRICT_ON_SEND
STR_MSG

Public Instance Methods

on_send(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 50
def on_send(node)
  return unless (message = offense_message(node))

  add_offense(node, message: message) do |corrector|
    corrector.replace(replacement_range(node), correction(node))
  end
end

Private Instance Methods

correction(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 111
def correction(node)
  if offense_array_node?(node)
    '[]'
  elsif str_node(node)
    preferred_string_literal
  elsif offense_hash_node?(node)
    if first_argument_unparenthesized?(node)
      # `some_method {}` is not same as `some_method Hash.new`
      # because the braces are interpreted as a block. We will have
      # to rewrite the arguments to wrap them in parenthesis.
      args = node.parent.arguments
      "(#{args[1..].map(&:source).unshift('{}').join(', ')})"
    else
      '{}'
    end
  end
end
enforce_double_quotes?() click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 74
def enforce_double_quotes?
  string_literals_config['EnforcedStyle'] == 'double_quotes'
end
first_argument_unparenthesized?(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 82
def first_argument_unparenthesized?(node)
  parent = node.parent
  return false unless parent && %i[send super zsuper].include?(parent.type)

  node.equal?(parent.arguments.first) && !parentheses?(node.parent)
end
frozen_strings?() click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 129
def frozen_strings?
  return true if frozen_string_literals_enabled?

  frozen_string_cop_enabled = config.for_cop('Style/FrozenStringLiteral')['Enabled']
  frozen_string_cop_enabled && !frozen_string_literals_disabled?
end
offense_array_node?(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 102
def offense_array_node?(node)
  array_node(node) && !array_with_block(node.parent)
end
offense_hash_node?(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 106
def offense_hash_node?(node)
  # If Hash.new takes a block, it can't be changed to {}.
  hash_node(node) && !hash_with_block(node.parent)
end
offense_message(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 60
def offense_message(node)
  if offense_array_node?(node)
    ARR_MSG
  elsif offense_hash_node?(node)
    HASH_MSG
  elsif str_node(node) && !frozen_strings?
    format(STR_MSG, prefer: preferred_string_literal)
  end
end
preferred_string_literal() click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 70
def preferred_string_literal
  enforce_double_quotes? ? '""' : "''"
end
replacement_range(node) click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 89
def replacement_range(node)
  if hash_node(node) && first_argument_unparenthesized?(node)
    # `some_method {}` is not same as `some_method Hash.new`
    # because the braces are interpreted as a block. We will have
    # to rewrite the arguments to wrap them in parenthesis.
    args = node.parent.arguments

    range_between(args[0].source_range.begin_pos - 1, args[-1].source_range.end_pos)
  else
    node.source_range
  end
end
string_literals_config() click to toggle source
# File lib/rubocop/cop/style/empty_literal.rb, line 78
def string_literals_config
  config.for_cop('Style/StringLiterals')
end