|
MediaWiki REL1_39
|
Class representing a 'diff' between two sequences of strings. More...


Public Member Functions | |
| __construct ( $from_lines, $to_lines) | |
| Computes diff between sequences of strings. | |
| closing () | |
| Get the closing set of lines. | |
| getEdits () | |
| isEmpty () | |
| Check for empty diff. | |
| lcs () | |
| Compute the length of the Longest Common Subsequence (LCS). | |
| orig () | |
| Get the original set of lines. | |
| reverse () | |
| Compute reversed Diff. | |
Public Attributes | |
| DiffOp[] | $edits |
Protected Attributes | |
| int | $bailoutComplexity = 0 |
| If this diff complexity is exceeded, a ComplexityException is thrown 0 means no limit. | |
Class representing a 'diff' between two sequences of strings.
| Diff::__construct | ( | $from_lines, | |
| $to_lines ) |
Computes diff between sequences of strings.
| string[] | $from_lines | An array of strings. Typically these are lines from a file. |
| string[] | $to_lines | An array of strings. |
\MediaWiki\Diff\ComplexityException
Reimplemented in WordLevelDiff.
Definition at line 56 of file Diff.php.
References DiffEngine\setBailoutComplexity().
| Diff::closing | ( | ) |
Get the closing set of lines.
This reconstructs the $to_lines parameter passed to the constructor.
Reimplemented in WordLevelDiff.
Definition at line 152 of file Diff.php.
References $lines.
| Diff::isEmpty | ( | ) |
| Diff::lcs | ( | ) |
| Diff::orig | ( | ) |
Get the original set of lines.
This reconstructs the $from_lines parameter passed to the constructor.
Reimplemented in WordLevelDiff.
Definition at line 132 of file Diff.php.
References $lines.
| Diff::reverse | ( | ) |
|
protected |
| DiffOp [] Diff::$edits |
Definition at line 37 of file Diff.php.
Referenced by getEdits().