Hi,
Has anyone programmed JavaScript on Aptana Studio? I am having problems with the Outline View. It does not show the methods of classes. For example:
var test = new Class({
variable: 0,
something: function() {
}
});
the result is that the outline does not show variable nor something -function. It only works when I define a function like:
function something() {
}
but that is not enough. Does anyone have a solution to this problem?