function WordLevelDiff::WordLevelDiff

File

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

Class

WordLevelDiff
@todo document @private @subpackage DifferenceEngine

Code

function WordLevelDiff($orig_lines, $closing_lines) {
  list($orig_words, $orig_stripped) = $this
    ->_split($orig_lines);
  list($closing_words, $closing_stripped) = $this
    ->_split($closing_lines);
  $this
    ->MappedDiff($orig_words, $closing_words, $orig_stripped, $closing_stripped);
}