Tagged Questions

7
votes
1answer
7k views

What happened to Eclipse's JSDT?

JSDT (Javascript Development Tools) is an Eclipse project aimed at implementing the JDT APIs for Javascript. Its early demos were really impressive, but it seems to not have had any releases since ...
5
votes
3answers
145 views

How to setup Eclipse to be warned about trailing comma in JavaScript

As many of us know, IE7 is not quite friendly with JavaScript code containing trailing commas, which can be a large problem for projects using modern JS framerworks and containing a lot of JS code. In ...
1
vote
3answers
167 views

How use Eclipse as a Javascript IDE?

I downloaded the eclipse Javascript IDE from the official download page however, when i start the application it says "A Java Runtime Environment or Java development Kit must be available in order to ...
1
vote
1answer
93 views

Disable an eclipse plugin that causes a conflict with a plugin in my Feature

I have an eclipse feature which essentially depends upon the Eclipse for Javascript Web Developers platform (it depends upon many plugins in there). However, one set of plugins causes a conflict with ...
1
vote
0answers
130 views

when using eclipse webtools JSDT, the validator doesn't recognise the “get someval() { return this.someVal }” syntax

When using JSDT to edit a javascript source file using this syntax for getter and setter like so; get action() { return this.aAction }, set action(action) { this.aAction = action }, it fails ...
1
vote
0answers
292 views

Organizing JavaScript code to be visible in Eclipse Outline

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 ...
1
vote
3answers
647 views

How to indicate public/protected/private members in JSDT outline view?

Javascript Developer Tools (JSDT) for Eclipse provides a nice outline view of Javascript classes, with a little symbol next to them to indicate visibility. Looking at ...
0
votes
0answers
129 views

Eclipse JSDT - full list of supported features?

Is there somewhere that I can get a definitive list of what is and is not supported in Eclipse's JSDT Javascript support? The documentation supplied with Eclipse is quite sparse. I'm particularly ...
0
votes
1answer
103 views

Specifying to Eclipse/JSDT the type of a Javascript variable

I'm trying to use Eclipse for some server-side Javascript development. The API I use has a function doStuff(string, object) (names changed to protect the guilty) that returns a value of differing ...
0
votes
1answer
309 views

How can an Eclipse plugin programmatically change JSDT's default formatter template?

I'm developing a plugin that extends Eclipse JSDT and would like to change the default profile for the JavaScript Formatter (so that my plugin users don't need to do a Preferences->JavaScript->Code ...