Bug 213341 - [search] Finegrain search for array allocation
Summary: [search] Finegrain search for array allocation
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.4   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-12-18 13:05 EST by Philipe Mulet CLA
Modified: 2013-01-29 09:34 EST (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Philipe Mulet CLA 2007-12-18 13:05:05 EST
Build 3.4M4

Fine-grain search could find type references for array allocation expressions.
I think it would need to be smart in the case an array initializer is specified and no type is on the right hand side.

e.g. 
     new SomeType[10];
     new SomeType[] { obj1, obj2, }
     SomeType[] array = { obj1, obj2, }