...
In this section we list the most significant functional limitations that may affect the analysis of applications using AngularJS:
AngularJS objects declared with prototypes
The extension does not detect AngularJS objects when they are declared with prototype. For example:
Code Block | ||
---|---|---|
| ||
xxx.service('ContentService', ['$rootScope', '$window', '$resource', '$q', '$log', 'ManageContentURIs', attContent.content]); attContent.content.prototype.retrieveContent = function(criteria, useStubs) { var useStub = useStubs?useStubs:false; var deferred = this.q.defer(), |
...