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
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.3/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.3.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.2.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.1.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.5 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.4 lib/rubocop/cop/rspec/mixin/location_help.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.3 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.2 lib/rubocop/cop/rspec/mixin/location_help.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.1 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-3.0.0.pre lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/mixin/location_help.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/mixin/location_help.rb