mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
3d6391419d
Replacing them with static members on each node type Change-Id: I455debf880bef4e280eea072364f5f57308ec2b1
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
module( 've.dm.LeafNode' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.dm.LeafNodeStub = function() {
|
|
// Inheritance
|
|
ve.dm.LeafNode.call( this, 'stub' );
|
|
};
|
|
|
|
ve.extendClass( ve.dm.LeafNodeStub, ve.dm.LeafNode );
|
|
|
|
/* Tests */
|