Sha256: cc244db38d3802a06179a33f602266ebbd42196fd89d3c4d3d39e9694c497054

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Style
      # Checks for space between a method name and a left parenthesis in defs.
      #
      # @example
      #
      #   # bad
      #   def func (x) ... end
      #
      #   # good
      #   def func(x) ... end
      class SpaceAfterMethodName < Cop
        include OnMethodDef

        MSG = 'Do not put a space between a method name and the opening ' \
              'parenthesis.'

        def on_method_def(_node, _method_name, args, _body)
          return unless args.loc.begin && args.loc.begin.is?('(')
          expr = args.loc.expression
          pos_before_left_paren = Parser::Source::Range.new(expr.source_buffer,
                                                            expr.begin_pos - 1,
                                                            expr.begin_pos)
          return unless pos_before_left_paren.source =~ /\s/

          add_offense(pos_before_left_paren, pos_before_left_paren)
        end

        def autocorrect(pos_before_left_paren)
          @corrections << lambda do |corrector|
            corrector.remove(pos_before_left_paren)
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.30.1 lib/rubocop/cop/style/space_after_method_name.rb
rubocop-0.30.0 lib/rubocop/cop/style/space_after_method_name.rb
rubocop-0.29.1 lib/rubocop/cop/style/space_after_method_name.rb
rubocop-0.29.0 lib/rubocop/cop/style/space_after_method_name.rb
rubocop-0.28.0 lib/rubocop/cop/style/space_after_method_name.rb
rubocop-0.27.1 lib/rubocop/cop/style/space_after_method_name.rb