OneMoreQuestion
OneMoreQuestion

Reputation: 1753

Eclipse Open Declaration Error - Does not resolve to a Javascript element

I am running the Node.js plugin in Eclipse (Nodeclipse). Whenever I try to do open declaration (f3) on a function inside a js file, Eclipse gives me the error

"Current text selection does not resolve to a Javascript element"

Inside my .project file, the project nature is as follows:

<natures>
        <nature>org.nodeclipse.ui.NodeNature</nature>
        <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
        <nature>tern.eclipse.ide.core.ternnature</nature>
</natures>

Any ideas?

Upvotes: 3

Views: 2953

Answers (1)

Paul Verest
Paul Verest

Reputation: 63912

As I remember, the message comes from JSDT, and to get rid of it, one would need to remove JDST nature, that is remove <nature>org.eclipse.wst.jsdt.core.jsNature</nature> line.

Upvotes: 1

Related Questions