| Summary: | Support the move statement | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Matt Heitz <mheitz> |
| Component: | EDT | Assignee: | Jeff Douglas <jeffdouglas> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | jspadea, lasher |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
Matt Heitz
Jeff - the only thing that needs to be done for this is a small change to the SMAP generation for "move a to b for c;" or "move a to b for all;" Given: arr1 int[] = [1,2,3]; arr2 int[] = new int[3]; move arr1 to arr2 for all; The SMAP for the move statement is: 18#1:40 But the generated code is a FOR loop that's 4 lines of Java code. The SMAP should be: 18#1:40,4 Otherwise a stepInto on the statement must be done once for each iteration. smap numbering fix done Verified |