Eclipse javascript prototype class diagram

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)

+3
source share
3 answers

There is a SPket plugin for eclipse that supports various js libraries. It is available for personal use only.

http://spket.com/prototypejs.html

+2
source

, .

, javascript . Foo - .

0

You might want to check out Netbeans. Netbeans recognizes Class.create, see http://netbeans.org/bugzilla/show_bug.cgi?id=149001

0
source

Source: https://habr.com/ru/post/1738589/


All Articles