2

How should I organize my JavaScript code to be visible well in deep in the Eclipse JSDT's Outline View?

For example, if I have a JS file containing the following content, Outline shows the one top level function only:

function topLevel() {
  var local1 = 1;
  var local2 = 2;
  function local() {};
}
pcjuzer
  • 2,724
  • 4
  • 25
  • 34

1 Answers1

1

You need to add the web perspective in the "Open Perspective" dialog

Symeon Mattes
  • 1,169
  • 16
  • 40