Bug 44061

Summary: CodeAssist - no completion after class literal access
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: David Audel <david_audel>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.0 M4   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description David Audel CLA 2003-10-02 05:39:24 EDT
1) create X.java
public class X {
  void foo() {
    bar(0,Object.class);
    bar(0,Obje<cursor>ct.class);
  }
  void bar(int i, Class j){
  }
}

2) do ctrl+space at cursor location

There is no proposal.
Comment 1 David Audel CLA 2003-10-02 05:45:31 EDT
invocationType was not reinitialized after the first 'class'.

Fixed.
Comment 2 David Audel CLA 2003-10-09 06:58:05 EDT
Verified.