1
0
Fork 0

Properly copying over abstract methods in implement()

closure/master
Mike Gerwitz 2011-06-08 01:10:44 -04:00
parent aa32f4404d
commit 24a04369ae
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}, },
} ); } );