Community
Participate
Working Groups
I'm coding some JavaScript objects and I'm assigning properties to the objects, but the outline view is not recognizing the type of these objects. Here is a sample (I've added in the JSDoc in the hope that this would help, but it does not appear to): Test = function(/**@type String*/input) { /** * @type String */ this.string = input; return this; }; In this outline, I see Test string:any Created from Forum posting: http://www.eclipse.org/forums/index.php?t=rview&goto=716316#msg_716316
In 3.5 the type of "string" is showing up as String.