jmbledsoe/angularjs-visualstudio-intellisense

Add recursion depth limit for callComponentFunctions()

Closed this issue · 1 comments

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?