diff --git a/src/Angular.js b/src/Angular.js index 9377605bdd76..9dff79633e1d 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -362,7 +362,7 @@ function int(str) { function inherit(parent, extra) { - return extend(new (extend(function() {}, {prototype:parent}))(), extra); + return extend(Object.create(parent), extra); } /** diff --git a/src/auto/injector.js b/src/auto/injector.js index 4bf348423bdb..a6c1794cfe8a 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -815,14 +815,11 @@ function createInjector(modulesToLoad, strictDi) { } function instantiate(Type, locals, serviceName) { - var Constructor = function() {}, - instance, returnedValue; - // Check if Type is annotated and use just the given function at n-1 as parameter // e.g. someModule.factory('greeter', ['$window', function(renamed$window) {}]); - Constructor.prototype = (isArray(Type) ? Type[Type.length - 1] : Type).prototype; - instance = new Constructor(); - returnedValue = invoke(Type, instance, locals, serviceName); + // Object creation: http://jsperf.com/create-constructor/2 + var instance = Object.create((isArray(Type) ? Type[Type.length - 1] : Type).prototype); + var returnedValue = invoke(Type, instance, locals, serviceName); return isObject(returnedValue) || isFunction(returnedValue) ? returnedValue : instance; } diff --git a/src/ng/controller.js b/src/ng/controller.js index c16db5bd5224..5e54a1e059d5 100644 --- a/src/ng/controller.js +++ b/src/ng/controller.js @@ -104,10 +104,10 @@ function $ControllerProvider() { // // This feature is not intended for use by applications, and is thus not documented // publicly. - var Constructor = function() {}; - Constructor.prototype = (isArray(expression) ? + // Object creation: http://jsperf.com/create-constructor/2 + var controllerPrototype = (isArray(expression) ? expression[expression.length - 1] : expression).prototype; - instance = new Constructor(); + instance = Object.create(controllerPrototype); if (identifier) { addIdentifier(locals, identifier, instance, constructor || expression.name); diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index cca13c49d7c3..c07e6d23e61a 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -36,7 +36,7 @@ var ngRouteModule = angular.module('ngRoute', ['ng']). */ function $RouteProvider() { function inherit(parent, extra) { - return angular.extend(new (angular.extend(function() {}, {prototype:parent}))(), extra); + return angular.extend(Object.create(parent), extra); } var routes = {};