From 38a6a4ee6a97c7bcec7b4d4e1c5b434fb6a58e12 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 28 Dec 2010 22:10:12 -0500 Subject: [PATCH] Added missing semi-colons that would otherwise be inserted via semicolon insertion --- lib/class.js | 4 ++-- lib/interface.js | 2 +- lib/util.js | 15 ++++++++------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/lib/class.js b/lib/class.js index 49055a8..4b87b65 100644 --- a/lib/class.js +++ b/lib/class.js @@ -36,7 +36,7 @@ var util = require( './util' ); exports.extend = function( base ) { return extend.apply( this, arguments ); -} +}; /** @@ -184,7 +184,7 @@ var extend = ( function( extending ) extending = false; return new_class; - } + }; /** diff --git a/lib/interface.js b/lib/interface.js index 8f8a1c1..0417483 100644 --- a/lib/interface.js +++ b/lib/interface.js @@ -34,7 +34,7 @@ var util = require( './util' ), exports.extend = function() { return extend.apply( this, arguments ); -} +}; /** diff --git a/lib/util.js b/lib/util.js index f93c229..fd633fe 100644 --- a/lib/util.js +++ b/lib/util.js @@ -40,7 +40,8 @@ var getset = ( Object.prototype.__defineGetter__ === undefined ) */ var secure_fallback = ( Object.defineProperty instanceof Function ) ? false - : true; + : true +; /** @@ -60,7 +61,7 @@ exports.freeze = function( obj ) Object.freeze( obj ); return obj; -} +}; /** @@ -225,7 +226,7 @@ exports.propParse = function( data, options ) callbackProp.call( callbackProp, name, value ); } } -} +}; /** @@ -330,7 +331,7 @@ exports.propCopy = function( props, dest, actions ) }; exports.propParse( props, parse_actions ); -} +}; /** @@ -359,7 +360,7 @@ exports.createAbstractMethod = function() exports.defineSecureProp( method, 'definition', definition ); return method; -} +}; /** @@ -375,7 +376,7 @@ exports.isAbstractMethod = function( func ) ? true : false ; -} +}; /** @@ -480,7 +481,7 @@ exports.arrayShrink = function( items ) } return arr_new; -} +}; /**