gitlab-org--gitlab-foss/lib/gitlab/string_regex_marker.rb

18 lines
410 B
Ruby
Raw Normal View History

2016-07-10 20:17:20 +00:00
module Gitlab
class StringRegexMarker < StringRangeMarker
# rubocop: disable CodeReuse/ActiveRecord
2016-07-10 20:17:20 +00:00
def mark(regex, group: 0, &block)
ranges = []
2016-07-10 20:17:20 +00:00
raw_line.scan(regex) do
begin_index, end_index = Regexp.last_match.offset(group)
2016-07-10 20:17:20 +00:00
ranges << (begin_index..(end_index - 1))
end
super(ranges, &block)
2016-07-10 20:17:20 +00:00
end
# rubocop: enable CodeReuse/ActiveRecord
2016-07-10 20:17:20 +00:00
end
end