Tower
Tower

Reputation: 102795

JavaScript development with Aptana using Outline View

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?

Upvotes: 1

Views: 1098

Answers (2)

Rolf
Rolf

Reputation: 46

Looks like a bug... Should be fixed in 3.0.4

see jira_appcelerator__APSTUD-2799

Upvotes: 1

Mike Cavaliere
Mike Cavaliere

Reputation: 700

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.

Upvotes: 1

Related Questions