function _HWLDF_WordAccumulator::addWords

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 985
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

_HWLDF_WordAccumulator
@todo document @private @subpackage DifferenceEngine

Code

function addWords($words, $tag = '') {
  if ($tag != $this->_tag) {
    $this
      ->_flushGroup($tag);
  }
  foreach ($words as $word) {

    // new-line should only come as first char of word.
    if ($word == '') {
      continue;
    }
    if ($word[0] == "\n") {
      $this
        ->_flushLine($tag);
      $word = drupal_substr($word, 1);
    }
    assert(!strstr($word, "\n"));
    $this->_group .= $word;
  }
}