class RuboCop::Cop::Lint::ImplicitStringConcatenation

This cop checks for implicit string concatenation of string literals which are on the same line.

@example

# bad

array = ['Item 1' 'Item 2']

@example

# good

array = ['Item 1Item 2']
array = ['Item 1' + 'Item 2']
array = [
  'Item 1' \
  'Item 2'
]

Constants

FOR_ARRAY
FOR_METHOD
MSG

Public Instance Methods

on_dstr(node) click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 32
def on_dstr(node)
  each_bad_cons(node) do |child1, child2|
    range   = child1.source_range.join(child2.source_range)
    message = format(MSG, display_str(child1), display_str(child2))
    if node.parent && node.parent.array_type?
      message << FOR_ARRAY
    elsif node.parent && node.parent.send_type?
      message << FOR_METHOD
    end
    add_offense(node, location: range, message: message)
  end
end

Private Instance Methods

display_str(node) click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 76
def display_str(node)
  if node.source =~ /\n/
    str_content(node).inspect
  else
    node.source
  end
end
each_bad_cons(node) { |child1, child2| ... } click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 47
def each_bad_cons(node)
  node.children.each_cons(2) do |child1, child2|
    # `'abc' 'def'` -> (dstr (str "abc") (str "def"))
    next unless string_literal?(child1) && string_literal?(child2)
    next unless child1.loc.last_line == child2.loc.line

    # Make sure we don't flag a string literal which simply has
    # embedded newlines
    # `"abc\ndef"` also -> (dstr (str "abc") (str "def"))
    next unless child1.source[-1] == ending_delimiter(child1)

    yield child1, child2
  end
end
ending_delimiter(str) click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 62
def ending_delimiter(str)
  # implicit string concatenation does not work with %{}, etc.
  if str.source[0] == "'"
    "'"
  elsif str.source[0] == '"'
    '"'
  end
end
str_content(node) click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 84
def str_content(node)
  if node.str_type?
    node.children[0]
  else
    node.children.map { |c| str_content(c) }.join
  end
end
string_literal?(node) click to toggle source
# File lib/rubocop/cop/lint/implicit_string_concatenation.rb, line 71
def string_literal?(node)
  node.str_type? ||
    (node.dstr_type? && node.children.all? { |c| string_literal?(c) })
end