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() {};
}
4

1 回答 1

1

您需要在“打开透视图”对话框中添加 Web 透视图

于 2015-06-25T13:43:57.717 回答