Is there a way to show the structure of a javascript class declared using the Prototype Class.create function in an Eclipse schema view?
Ads are as follows:
var Foo = Class.create({
bar: function() {
...
},
baz: function() {
...
},
});
For now, all I get is "Foo:".
(A google search appeared http://marketplace.eclipse.org/content/prototypewtp , but the link to the plugin’s home page does not work)
source
share