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
173 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
189 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
0answers
139 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
302 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
655 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
14 views
Type declaration/inference in Eclipse/JSDT
I would like to specify in Eclipse/JSDT the type of an instance variable as in the following example:
/**
* @constructor
*/
function A() {
/** @type Node */
this.x = ...
0
votes
0answers
43 views
intellisense for JSDT libraries not working with Eclipse 3.7
I have integrated the JSDT editor to my MultiPageEditorPart. The intelli-sense works fine in Eclipse 3.6 but fails in 3.7 (intelli-sense works fine for basic JS object from 'Window' but not for JS ...
0
votes
1answer
133 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
314 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 ...