This Bugzilla instance is deprecated, and most Eclipse projects now use GitHub or Eclipse GitLab. Please see the deprecation plan for details.
Bug 400718 - [enhancement]VJETDoc multiple var typing
Summary: [enhancement]VJETDoc multiple var typing
Status: RESOLVED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: VJET (show other bugs)
Version: unspecified   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Justin Early CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-13 12:41 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-02-13 12:41:55 EST
When I have this:

var myVar1 = 'blub',     
myVar2 = null; //<<MyCoolClass  

With this myVar1 and myVar2 are myCoolClass. But I wont only myVar2 to be MyCoolClass
Comment 1 Justin Early CLA 2013-03-01 11:26:51 EST
VjetDoc now supports multiple vars

// backwards
var x =20, 
	y = Date.now(), //<Number
	z ="" //<Date
		
// forwards

var x =20,  //>Number
	y = Date.now(),
	//>Date
	z ="" 
		
	
	
//>Function[]
var funcs =[
            function(){//<String fn(String)
            	return true;
            }
];

// the end don't jump to beginning

var x =20,  // x is not getting warning about redefined
	y2 = Date.now(),
	z2 ="" //<String