Sha256: f132805f2c235a40237fce906f21403e492ca8dcf6dd941954b515364f389ab9

Contents?: true

Size: 1.35 KB

Versions: 13

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8
# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for string conversion in string interpolation,
      # which is redundant.
      #
      # @example
      #
      #   "result is #{something.to_s}"
      class StringConversionInInterpolation < Cop
        MSG_DEFAULT = 'Redundant use of `Object#to_s` in interpolation.'.freeze
        MSG_SELF = 'Use `self` instead of `Object#to_s` in ' \
                   'interpolation.'.freeze

        def on_dstr(node)
          node.children.select { |n| n.type == :begin }.each do |begin_node|
            final_node = begin_node.children.last
            next unless final_node && final_node.type == :send

            receiver, method_name, *args = *final_node
            next unless method_name == :to_s && args.empty?

            add_offense(
              final_node,
              :selector,
              receiver ? MSG_DEFAULT : MSG_SELF
            )
          end
        end

        private

        def autocorrect(node)
          lambda do |corrector|
            receiver, _method_name, *_args = *node
            corrector.replace(
              node.source_range,
              if receiver
                receiver.source
              else
                'self'
              end
            )
          end
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.42.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.41.2 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.41.1 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.41.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.40.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.39.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.38.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.37.2 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.37.1 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.37.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.36.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb