Properly copying over abstract methods in implement()
parent
aa32f4404d
commit
24a04369ae
|
@ -398,7 +398,7 @@ var implement = function()
|
||||||
util.propParse( arg.prototype, {
|
util.propParse( arg.prototype, {
|
||||||
method: function( name, func, is_abstract, keywords )
|
method: function( name, func, is_abstract, keywords )
|
||||||
{
|
{
|
||||||
dest[ name ] = func;
|
dest[ 'abstract ' + name ] = func.definition;
|
||||||
make_abstract = true;
|
make_abstract = true;
|
||||||
},
|
},
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in New Issue