mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.AlienInlineNode.js
Catrope ce60b54d33 Rename fringeWhitespace to internal
This allows us to put other internal data in there in the future. Also
passing it through the Node constructor properly now.

* ve.dm.Node
** Rename fringeWhitespace property to internal
** Add internal parameter to constructor
** Remove setFringeWhitespace()
* Increase the number of parameters passed through by ve.Factory to 3
* Pass through .internal from linmod to nodeFactory in ve.dm.Document
* ve.dm.Converter
** Rename .fringeWhitespace to .internal.whitespace and make it an array
** Store a temporary reference to .internal in domElement.veInternal
* Add internal to all node constructors except TextNode

Tests:
* Update for fringeWhitespace->internal rename
* Add third parameter to ve.Factory tests
* Add .internal to getNodeTreeSummary

Change-Id: If20c0bb78fee3efa55f72e51e7fc261283358de7
2012-08-16 15:14:01 -07:00

50 lines
1.2 KiB
JavaScript

/**
* VisualEditor data model AlienInlineNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for an alien inline node.
*
* @class
* @constructor
* @extends {ve.dm.LeafNode}
* @param {Integer} [length] Length of content data in document
* @param {Object} [attributes] Reference to map of attribute key/value pairs
* @param {Object} [internal] Reference to internal data object
*/
ve.dm.AlienInlineNode = function ( length, attributes, internal ) {
// Inheritance
ve.dm.LeafNode.call( this, 'alienInline', 0, attributes, internal );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.AlienInlineNode.rules = {
'isWrapped': true,
'isContent': true,
'canContainContent': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
// This is a special node, no converter registration is required
ve.dm.AlienInlineNode.converters = null;
/* Registration */
ve.dm.nodeFactory.register( 'alienInline', ve.dm.AlienInlineNode );
/* Inheritance */
ve.extendClass( ve.dm.AlienInlineNode, ve.dm.LeafNode );