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

Bug 355902

Summary: Record clone method is not generated correctly.
Product: z_Archived Reporter: Joseph Vincens <jvincens>
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: Linux   
Whiteboard:

Description Joseph Vincens CLA 2011-08-25 20:05:22 EDT
Copy the records HttpREST, HttpRequest, HttpResponse from the system parts eglx.http and generate them to JS. In HttpREST th eeze$$Clone method is not correct.
Record field should be cloned not copied:
	ezert$$2.request = ezert$$1.request;
	ezert$$2.response = ezert$$1.response;
Should be generated as:
	ezert$$2.request = ezert$$1.request.eze$$clone();
	ezert$$2.response = ezert$$1.response.eze$$clone();
Comment 1 Joseph Vincens CLA 2011-09-15 08:34:56 EDT
fixed
Comment 2 Joseph Vincens CLA 2011-09-19 11:19:24 EDT
verified