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 )
{
return extend.apply( this, arguments );
}
};
/**
@ -184,7 +184,7 @@ var extend = ( function( extending )
extending = false;
return new_class;
}
};
/**

View File

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

View File

@ -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;
}
};
/**