Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 354741 - Boolean doesn't correctly convert to a string
Summary: Boolean doesn't correctly convert to a string
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-15 12:40 EDT by Kathy Carroll CLA
Modified: 2017-02-23 14:16 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.