Bug 213341

Summary: [search] Finegrain search for array allocation
Product: [Eclipse Project] JDT Reporter: Philipe Mulet <philippe_mulet>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: NEW --- QA Contact:
Severity: enhancement    
Priority: P3 CC: frederic_fusier, jerome_lanneluc, martinae
Version: 3.4   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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, }