开发者

JavaScript development with Aptana using Outline View

开发者 https://www.devze.com 2023-01-02 19:28 出处:网络
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:

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开发者_StackOverflow enough. Does anyone have a solution to this problem?


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.


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

see jira_appcelerator__APSTUD-2799

0

精彩评论

暂无评论...
验证码 换一张
取 消