1
0
Fork 0

abstractFlag now defined using define_secure_prop()

closure/master
Mike Gerwitz 2010-11-14 21:18:40 -05:00
parent bb631eb706
commit e0657e1c44
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ exports.abstractMethod = function( definition )
throw new Error( "Cannot call abstract method" );
};
method.abstractFlag = true;
define_secure_prop( method, 'abstractFlag', true );
return method;
}