Eclipse Galileo supports javascript cross-file cod

2019-04-08 10:07发布

When editing multiple javascript files, each of which are supposed to be available in the global scope because - for example - they will each be loaded in the same html document, Galileo supported this little trick to put comment tags for other files that are required to be available in the same scope:

myfile.js:

// @include "somefile.js"
// @include "otherfile.js"

And you have cross-file code completion in myfile.js.

But now that I moved to Eclipse Helios, this doesn't work anymore. Did they move similar functionality to some other method?

1条回答
时光不老,我们不散
2楼-- · 2019-04-08 10:42

My Eclipse Helios installation with Spket works just fine.

Just FYI:

Eclipse:

Version: Helios Service Release 2 Build id: 20110218-0911

Spket:

Version: 1.6.18

In file One.js:

var varOne = 
{
    test: function(){}
}

In file Two.js on Ctrl-Space (or .):

enter image description here

As you can see - test function is visible.

EDIT:

also, what's the policy on resurrection of 2 months old questions?

查看更多
登录 后发表回答