Bug 402176 - Property proposals for mixed type case
Summary: Property proposals for mixed type case
Status: NEW
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-03-01 13:42 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-01 13:42:39 EST
// mixed type proposals
var mixed = function(mixed){ //<void fn([String+Date] mixed)
	mixed.XXXX  // expected length property from String
}

// variant example
var mixed = function(mixed){ //<void fn({String|Date} mixed)
	mixed.XXX // expected length and received length property. This case works as work around if types are actually mixed then this would be a bug only in mixed typing case.
}