Eclipse Galileo supports javascript cross file code completion, but Eclipse Helios not?

When editing multiple javascript files, each of them must be accessible in the global scope because, for example, each of them will be loaded into the same html document, Galileo supported this small trick to put comment tags for other files that should be available in the same amount:

myfile.js:

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

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

But now that I have switched to Eclipse Helios, this no longer works. Did they move similar functions using any other method?

+5
source share
1 answer

Eclipse Helios Spket .

FYI:

Eclipse,

: Helios Service Release 2 : 20110218-0911

Spket:

: 1.6.18

One.js:

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

Two.js Ctrl-Space (.):

enter image description here

- test .

, ?

+2

All Articles