| Summary: | [Refactoring] Change To Vector Notation | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Tools] PTP | Reporter: | Mariano Mendez <marianomendez> | ||||||
| Component: | Photran.Refactoring Engine | Assignee: | Jeffrey Overbey <com-eclipse-dot-org> | ||||||
| Status: | CLOSED FIXED | QA Contact: | |||||||
| Severity: | enhancement | ||||||||
| Priority: | P2 | CC: | com-eclipse-dot-org | ||||||
| Version: | unspecified | ||||||||
| Target Milestone: | 8.0 | ||||||||
| Hardware: | PC | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Attachments: |
|
||||||||
Created attachment 195419 [details]
the patch and an image
Hi Mariano, You can commit this to the Git repository yourself now that you're a committer. :-) If you need any help, let me know. I'll reassign this to you for now. Please close this bug after it's committed (and the user's guide is updated). Thanks! I have committed this to master in order to meet the Juno feature freeze. Code review/testing/string externalization/documentation are pending. I found a bug regarding error messages. I will submit a patch to fix that bug Created attachment 216295 [details]
patch to solve messages problems
this patch solves messages problems found in the refactoring.
I committed the patch. Thanks! Closing for Juno; documentation pending. Thanks! |
Build Identifier: Build id: 20100917-0705 This refactoring transforms a Do loop statement that uses an array to iterate through it into a vector notation operation. The transformation will fail : - If a do loop statement is not selected - If there are index dependencies - If an old style do loop is selected Do I= 1,10 v(i) =1 end do it will be transformed into v(1:10) =1 Reproducible: Always