views:

99

answers:

1

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?

+1  A: 

To my knowledge, Aptana's outline view never views the contents of closures. It will view the contents of public objects or global functions, however.

Mike Cavaliere