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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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 == '' ) { continue ; } if ( $word [0] == "\n" ) { $this ->_flushLine( $tag ); $word = Unicode:: substr ( $word , 1); } assert(! strstr ( $word , "\n" )); $this ->group .= $word ; } } |
Please login to continue.