Eclipse outline of Prototype javascript classes
Posted
by Rob Agar
on Stack Overflow
See other posts from Stack Overflow
or by Rob Agar
Published on 2010-03-26T00:44:45Z
Indexed on
2010/03/26
0:53 UTC
Read the original article
Hit count: 247
Is there a way to show the structure of a javascript class declared using Prototype's Class.create function in the Eclipse outline view?
The declarations look like:
var Foo = Class.create({
bar: function() {
...
},
baz: function() {
...
},
});
At the moment all I get is "Foo:".
(A google search turned up http://marketplace.eclipse.org/content/prototypewtp, but the link to the plugin homepage is dead)
© Stack Overflow or respective owner