Sha256: cffba1de7dad2dfa79ee8236d7d08b2e186e46528f58cf1bfe389eae9e95eeff

Contents?: true

Size: 1.85 KB

Versions: 11

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # This class handles autocorrection for code that needs to be moved
    # to new lines.
    class LineBreakCorrector
      extend Alignment
      extend TrailingBody
      extend Util

      class << self
        attr_reader :processed_source

        def correct_trailing_body(configured_width:, corrector:, node:,
                                  processed_source:)
          @processed_source = processed_source
          range = first_part_of(node.to_a.last)
          eol_comment = end_of_line_comment(node.source_range.line)

          break_line_before(range: range, node: node, corrector: corrector,
                            configured_width: configured_width)
          move_comment(eol_comment: eol_comment, node: node,
                       corrector: corrector)
          remove_semicolon(node, corrector)
        end

        def break_line_before(range:, node:, corrector:, indent_steps: 1,
                              configured_width:)
          corrector.insert_before(
            range,
            "\n" + ' ' * (node.loc.keyword.column +
                          indent_steps * configured_width)
          )
        end

        def move_comment(eol_comment:, node:, corrector:)
          return unless eol_comment
          text = eol_comment.loc.expression.source
          corrector.insert_before(node.source_range,
                                  text + "\n" + (' ' * node.loc.keyword.column))
          corrector.remove(eol_comment.loc.expression)
        end

        private

        def remove_semicolon(node, corrector)
          return unless semicolon(node)
          corrector.remove(semicolon(node).pos)
        end

        def semicolon(node)
          @semicolon ||= {}
          @semicolon[node.object_id] ||= tokens(node).find(&:semicolon?)
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
rubocop-0.58.2 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.58.1 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.58.0 lib/rubocop/cop/correctors/line_break_corrector.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.57.2 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.57.1 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.57.0 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.56.0 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.55.0 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.54.0 lib/rubocop/cop/correctors/line_break_corrector.rb
rubocop-0.53.0 lib/rubocop/cop/correctors/line_break_corrector.rb