Sha256: ccce795d7029dcf3c8a25b9008dda3ba4de5f089d8ca220b3e49742917ee9fe6

Contents?: true

Size: 678 Bytes

Versions: 236

Compression:

Stored size: 678 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # Common functionality for obtaining source ranges from regexp matches
    module MatchRange
      include RangeHelp

      private

      # Return a new `Range` covering the first matching group number for each
      # match of `regex` inside `range`
      def each_match_range(range, regex)
        range.source.scan(regex) { yield match_range(range, Regexp.last_match) }
      end

      # For a `match` inside `range`, return a new `Range` covering the match
      def match_range(range, match)
        range_between(range.begin_pos + match.begin(1), range.begin_pos + match.end(1))
      end
    end
  end
end

Version data entries

236 entries across 227 versions & 23 rubygems

Version Path
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/mixin/match_range.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/mixin/match_range.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/mixin/match_range.rb
rubocop-1.64.1 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.63.4 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.63.3 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.63.2 lib/rubocop/cop/mixin/match_range.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/mixin/match_range.rb
rubocop-1.63.1 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.63.0 lib/rubocop/cop/mixin/match_range.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/mixin/match_range.rb
rubocop-1.62.1 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.62.0 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.61.0 lib/rubocop/cop/mixin/match_range.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/mixin/match_range.rb
rubocop-1.60.2 lib/rubocop/cop/mixin/match_range.rb
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/match_range.rb
study_line-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/match_range.rb
study_line-0.2.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/match_range.rb
study_line-0.2.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/mixin/match_range.rb