mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
fd49e8df32
In this commit several methods (child node add/remove and parent/root modification) were also moved to ve.dm.BranchNode ve.dm.Node respectively. ve.Node and ve.BranchNode are immutable. ve.dm.Node and ve.dm.BranchNode are mutable. Other subclasses of ve.Node and ve.BranchNode should implement functionality to mimic changes made to a data model. Change-Id: Ia9ff78764f8f50f99fc8f9f9593657c0a0bf287e
23 lines
465 B
JavaScript
23 lines
465 B
JavaScript
module( 've.TwigNode' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.TwigNodeStub = function() {
|
|
// Inheritance
|
|
ve.TwigNode.call( this );
|
|
};
|
|
|
|
ve.extendClass( ve.TwigNodeStub, ve.TwigNode );
|
|
|
|
/* Tests */
|
|
|
|
test( 'prototype.canHaveChildren', 1, function() {
|
|
var node = new ve.TwigNodeStub();
|
|
strictEqual( node.canHaveChildren(), true );
|
|
} );
|
|
|
|
test( 'prototype.canHaveGrandchildren', 1, function() {
|
|
var node = new ve.TwigNodeStub();
|
|
strictEqual( node.canHaveGrandchildren(), false );
|
|
} );
|