I use Aptana Studio and AngularJS.
When I open a javascript file, which I define a controller or a service, outline section is empty.
is there a way or trick to see list of variables/functions in the outline, which are defined in that controller or service?
for example
myApp.controller('myAppController', function($scope){
var abc = {};
$scope.var1 = abc;
var funcA = function(){
return false
};
$scope.funcB = function(){};
};
is it there a way to see abc, var1, funcA and funcB in outline?
UPDATE

