ng-annotate-patched
ng-annotate-patched copied to clipboard
A fork of ng-annotate which doesn't fail on newer JavaScript syntax
Results
1
ng-annotate-patched issues
Sort by
recently updated
recently updated
newest added
Everything works ok If I use class method definition: ```javascript angular.component('example', { controller: function($scope) { } }); ``` But there is problem with method shorthand definition: ```javascript angular.component('example', { controller($scope)...