Sha256: ccce795d7029dcf3c8a25b9008dda3ba4de5f089d8ca220b3e49742917ee9fe6

Contents?: true

Size: 678 Bytes

Versions: 225

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

225 entries across 216 versions & 21 rubygems

Version Path
rubocop-1.16.0 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.15.0 lib/rubocop/cop/mixin/match_range.rb
cocRb-0.1.0 .bundle/ruby/3.0.0/gems/rubocop-1.14.0/lib/rubocop/cop/mixin/match_range.rb
rubocop-1.14.0 lib/rubocop/cop/mixin/match_range.rb
rubocop-1.13.0 lib/rubocop/cop/mixin/match_range.rb