2018-10-22 03:00:50 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-10 16:17:20 -04:00
|
|
|
module Gitlab
|
|
|
|
class StringRegexMarker < StringRangeMarker
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-07-10 16:17:20 -04:00
|
|
|
def mark(regex, group: 0, &block)
|
2018-02-16 08:33:50 -05:00
|
|
|
ranges = []
|
2016-07-10 16:17:20 -04:00
|
|
|
|
2018-02-16 08:33:50 -05:00
|
|
|
raw_line.scan(regex) do
|
|
|
|
begin_index, end_index = Regexp.last_match.offset(group)
|
2016-07-10 16:17:20 -04:00
|
|
|
|
2018-02-16 08:33:50 -05:00
|
|
|
ranges << (begin_index..(end_index - 1))
|
|
|
|
end
|
|
|
|
|
|
|
|
super(ranges, &block)
|
2016-07-10 16:17:20 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-07-10 16:17:20 -04:00
|
|
|
end
|
|
|
|
end
|