public HWLDFWordAccumulator::addWords($words, $tag = '')
File
core/lib/Drupal/Component/Diff/Engine/HWLDFWordAccumulator.php, line 56
Class
HWLDFWordAccumulator @todo document @private @subpackage DifferenceEngine
Namespace
Drupal\Component\Diff\Engine
Code
public 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 == '') {
con