If your controllers are getting huge, go refactor into directives and services. I don't see how this would help since there isn't even inheritance?
also:
app.controller('AppCtrl', ['$scope', '$location', '$http'], function($scope, $location, $http) {
// ...
}]);
vs app.classy.controller({ name: 'AppCtrl', inject: ['$scope', '$location', '$http'],
//...
});
Congratulations, you have saved absolutely nothing (10 bytes? ) and just made it harder for me to understand your angular app.One of the brilliant things about angular is that it provides a proper structure that anyone that needs to write angular needs to adhere to. If you start introducing layers upon layers of funkyness and glitter, you'll end up with something non-angular.
what I mean by that is: Classy introduces new conventions in a frameworks that already has a lot of conventions to keep track of while coding, and my biggest argument against this is that you introduce a dependency to Classy for all code based upon it, therefore you've created an extra layer of complexity to fix and track down when angular changes.
In my mind effort like this should go into the angular core to make it better.