Bug 322874 - Duplicate variable with comment acts wrong
Summary: Duplicate variable with comment acts wrong
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P2 normal (vote)
Target Milestone: ---   Edit
Assignee: PHP UI CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-08-17 03:46 EDT by Sylvia Tancheva CLA
Modified: 2020-05-14 10:16 EDT (History)
1 user (show)

See Also:


Attachments
screen-shot (26.16 KB, image/png)
2010-08-17 03:47 EDT, Sylvia Tancheva CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Sylvia Tancheva CLA 2010-08-17 03:46:41 EDT
Inside a class I have a member variable and adjoined phpdoc comment:

      /**
       * @var array
       */
      private $componentContainers;

When folded, it looks like this:

       * @var array
      private $componentContainers;

If I mark both rows and duplicate-down (ctrl-alt-down) the result is:

       * @var array
       */
      private $componentContainers;
Comment 1 Sylvia Tancheva CLA 2010-08-17 03:47:40 EDT
Created attachment 176759 [details]
screen-shot

This seems to be selection-related.
See the attachment for better understanding.