Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 354741

Summary: Boolean doesn't correctly convert to a string
Product: z_Archived Reporter: Kathy Carroll <carrollk>
Component: EDTAssignee: Project Inbox <edt.javascriptgen-inbox>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: greer
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Kathy Carroll CLA 2011-08-15 12:40:37 EDT
EDT code

	function start()
		SysLib.WriteStdOut("Hello from JavaScript Batch");
		builtString String;
		myT boolean = true;
		builtString = "myT " + myT;	
		SysLib.WriteStdOut(builtString);
	end

Output is

Hello from JavaScript Batch
myT [object Object]

Expected output is

Hello from JavaScript Batch
myT true
Comment 1 Kathy Carroll CLA 2011-08-18 11:25:25 EDT
Integer has the same issue
Comment 2 Scott Greer CLA 2011-09-08 19:13:37 EDT
Both of these issues have been resolved.
Comment 3 Kathy Carroll CLA 2011-09-16 14:19:03 EDT
works in 2011091325
Comment 4 Lisa Lasher CLA 2011-10-11 16:26:39 EDT
Closing this defect.