summaryrefslogtreecommitdiff
path: root/lib/gitlab/word_diff/chunk_collection.rb
blob: dd388f753029a873a2ec6eea4efa3df91e61e6d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module WordDiff
    class ChunkCollection
      def initialize
        @chunks = []
      end

      def add(chunk)
        @chunks << chunk
      end

      def content
        @chunks.join('')
      end

      def reset
        @chunks = []
      end
    end
  end
end