Bug 33653

Summary: Relevance - should privilege type not needing qualification
Product: [Eclipse Project] JDT Reporter: Philipe Mulet <philippe_mulet>
Component: CoreAssignee: David Audel <david_audel>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.1   
Target Milestone: 2.1 RC2   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Philipe Mulet CLA 2003-03-03 08:07:11 EST
Build 20030227

When defining following method in MethodScope, TypeDeclaration from compiler 
ast package should be proposed before the DOM one.

	void foo(){
		if (referenceContext instanceof TypeDeclaration<CODEASSIST HERE>
	}
Comment 1 David Audel CLA 2003-03-03 11:36:39 EST
Simple test case:
---------------------
import p.*;
import p.X;
public class X {
  void foo(){
    Y
  }
}
---------------------
package p;
public class Y {
}
---------------------
package q;
public class Y {
}
---------------------

Comment 2 David Audel CLA 2003-03-03 12:40:28 EST
Fixed.
Comment 3 David Audel CLA 2003-03-10 06:45:58 EST
Verified.