This Bugzilla instance is deprecated, and most Eclipse projects now use GitHub or Eclipse GitLab. Please see the deprecation plan for details.
Bug 402368 - VJETDoc issue in for loop and for in loop
Summary: VJETDoc issue in for loop and for in loop
Status: RESOLVED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: VJET (show other bugs)
Version: unspecified   Edit
Hardware: Macintosh Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Justin Early CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-04 14:32 EST by Justin Early CLA
Modified: 2017-04-11 15:12 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Justin Early CLA 2013-03-04 14:32:58 EST
VJETDoc is not recognized in for loop/for in loop. These are corner cases but want to document known issue


var array = ["a","b"];

// BUG expect index to be a String but is stays int
for(var index=0,/**<String*/j; index<array.length; index++) {
	var x = index + 20;
	var y = index + 20
	
	 
}

// Bug expect zot to be Date but is String
for (var zot /*<Date*/ in array) {
	
}
Comment 1 Justin Early CLA 2013-03-11 13:24:18 EDT
This has been fixed. VJET doc comments work in for loops as well as for in loops.