mediawiki-extensions-Visual.../modules/ve2/ve.LeafNode.js
Trevor Parscal 4d03be0301 Added comments and tests for canHaveChildren
Change-Id: I0b9538a89cba4c36d1a8af7395476b9612d18637
2012-04-30 11:57:45 -07:00

21 lines
281 B
JavaScript

/**
* Mixin for leaf nodes
*
* @class
* @abstract
* @constructor
*/
ve.LeafNode = function() {
//
};
/**
* Checks if this node can have children.
*
* @method
* @returns {Boolean} Always false
*/
ve.LeafNode.prototype.canHaveChildren = function() {
return false;
};