Closed EvAlex closed 10 years ago
Test that reproduces the error:
angular.module('recursionTest', ['ng']) .service('svc1', ['$q', function ($q) { return { requestData: $q.defer().promise }; }]) .service('svc2', ['svc1', function (svc1) { //svc1.requestData. }]);
Hey, @EvAlex, did you close this because it was no longer an issue for you?
Test that reproduces the error: