From e0657e1c44efffe2e0dfe2f12a10cf2b608cc012 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 14 Nov 2010 21:18:40 -0500 Subject: [PATCH] abstractFlag now defined using define_secure_prop() --- lib/class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class.js b/lib/class.js index f5d17f0..f038213 100644 --- a/lib/class.js +++ b/lib/class.js @@ -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; }