Text_Diff_Op
The WordPress Core Text Diff Op class.
Defined (1)
The class is defined in the following location(s).
- /wp-includes/Text/Diff.php
- class Text_Diff_Op {
- var $orig;
- var $final;
- function &reverse()
- {
- trigger_error('Abstract method', E_USER_ERROR);
- }
- function norig()
- {
- return $this->orig ? count($this->orig) : 0;
- }
- function nfinal()
- {
- return $this->final ? count($this->final) : 0;
- }
- }