WordLevelDiff::orig

public function WordLevelDiff::orig

public WordLevelDiff::orig()

Gets the original set of lines.

This reconstructs the $from_lines parameter passed to the constructor.

Return value

array The original sequence of strings.

Overrides Diff::orig

File

core/lib/Drupal/Component/Diff/WordLevelDiff.php, line 52

Class

WordLevelDiff
@todo document @private @subpackage DifferenceEngine

Namespace

Drupal\Component\Diff

Code

public function orig() {
  $orig = new HWLDFWordAccumulator();

  foreach ($this->edits as $edit) {
    if ($edit->type == 'copy') {
      $orig->addWords($edit->orig);
    }
    elseif ($edit->orig) {
      $orig->addWords($edit->orig, 'mark');
    }
  }
  $lines = $orig->getLines();
  return $lines;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Diff!WordLevelDiff.php/function/WordLevelDiff::orig/8.1.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部