Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 355902 - Record clone method is not generated correctly.
Summary: Record clone method is not generated correctly.
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-25 20:05 EDT by Joseph Vincens CLA
Modified: 2017-02-23 14:18 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 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