1
0
Fork 0

Added missing semi-colons that would otherwise be inserted via semicolon insertion

closure/master
Mike Gerwitz 2010-12-28 22:10:12 -05:00
parent 789f2390af
commit 38a6a4ee6a
3 changed files with 11 additions and 10 deletions

View File

@ -36,7 +36,7 @@ var util = require( './util' );
exports.extend = function( base ) exports.extend = function( base )
{ {
return extend.apply( this, arguments ); return extend.apply( this, arguments );
} };
/** /**
@ -184,7 +184,7 @@ var extend = ( function( extending )
extending = false; extending = false;
return new_class; return new_class;
} };
/** /**

View File

@ -34,7 +34,7 @@ var util = require( './util' ),
exports.extend = function() exports.extend = function()
{ {
return extend.apply( this, arguments ); return extend.apply( this, arguments );
} };
/** /**

View File

@ -40,7 +40,8 @@ var getset = ( Object.prototype.__defineGetter__ === undefined )
*/ */
var secure_fallback = ( Object.defineProperty instanceof Function ) var secure_fallback = ( Object.defineProperty instanceof Function )
? false ? false
: true; : true
;
/** /**
@ -60,7 +61,7 @@ exports.freeze = function( obj )
Object.freeze( obj ); Object.freeze( obj );
return obj; return obj;
} };
/** /**
@ -225,7 +226,7 @@ exports.propParse = function( data, options )
callbackProp.call( callbackProp, name, value ); callbackProp.call( callbackProp, name, value );
} }
} }
} };
/** /**
@ -330,7 +331,7 @@ exports.propCopy = function( props, dest, actions )
}; };
exports.propParse( props, parse_actions ); exports.propParse( props, parse_actions );
} };
/** /**
@ -359,7 +360,7 @@ exports.createAbstractMethod = function()
exports.defineSecureProp( method, 'definition', definition ); exports.defineSecureProp( method, 'definition', definition );
return method; return method;
} };
/** /**
@ -375,7 +376,7 @@ exports.isAbstractMethod = function( func )
? true ? true
: false : false
; ;
} };
/** /**
@ -480,7 +481,7 @@ exports.arrayShrink = function( items )
} }
return arr_new; return arr_new;
} };
/** /**