Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 1x 325x 325x 1x 1x 1291x 339x 952x 1x 325x | /*!
* VisualEditor DiffTreeNode class.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Tree node for conducting a tree diff.
*
* @class
* @extends treeDiffer.TreeNode
* @constructor
* @param {Object} node Node of any type
* @param {Object} config
*/
ve.DiffTreeNode = function ( node ) {
// Parent constructor
ve.DiffTreeNode.super.apply( this, arguments );
this.doc = node.getDocument();
};
/* Inheritance */
OO.inheritClass( ve.DiffTreeNode, treeDiffer.TreeNode );
/* Methods */
/**
* Determine whether two nodes are equal. Branch nodes are considered equal if
* they have the same types and element.attributes. Content branch nodes are
* only equal if they also have the same content.
*
* @param {ve.DiffTreeNode} otherNode Node to compare to this node
* @return {boolean} The nodes are equal
*/
ve.DiffTreeNode.prototype.isEqual = function ( otherNode ) {
if ( !this.node.isDiffedAsTree() && !otherNode.node.isDiffedAsTree() ) {
return ve.dm.VisualDiff.static.compareNodes( this.node, otherNode.node );
} else {
return ve.dm.LinearData.static.compareElementsUnannotated( this.node.element, otherNode.node.element );
}
};
/**
* Get the children of the original node
*
* @return {Array} Array of nodes the same type as the original node
*/
ve.DiffTreeNode.prototype.getOriginalNodeChildren = function () {
return ( this.node.isDiffedAsTree() && this.node.children ) || [];
};
|