Sha256: c5486cca5257f3d127b302f993752e3c69fdd168691c5d822751f1a1895fafc8

Contents?: true

Size: 893 Bytes

Versions: 39

Compression:

Stored size: 893 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Helper methods to location.
      module LocationHelp
        module_function

        # @param node [RuboCop::AST::SendNode]
        # @return [Parser::Source::Range]
        # @example
        #   foo 1, 2
        #      ^^^^^
        def arguments_with_whitespace(node)
          node.loc.selector.end.with(
            end_pos: node.source_range.end_pos
          )
        end

        # @param node [RuboCop::AST::SendNode]
        # @return [Parser::Source::Range]
        # @example
        #   foo { bar }
        #      ^^^^^^^^
        def block_with_whitespace(node)
          return unless (parent = node.parent)
          return unless parent.block_type?

          node.source_range.end.with(
            end_pos: parent.source_range.end_pos
          )
        end
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 7 rubygems

Version Path
rubocop-rspec-2.27.0 lib/rubocop/cop/rspec/mixin/location_help.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.26.1/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.26.1 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.26.0 lib/rubocop/cop/rspec/mixin/location_help.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.25.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.24.1 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.24.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.23.2 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.23.1 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.23.0 lib/rubocop/cop/rspec/mixin/location_help.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/mixin/location_help.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/mixin/location_help.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/mixin/location_help.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.22.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.21.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.20.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.19.0 lib/rubocop/cop/rspec/mixin/location_help.rb