Bug 6111

Summary: Missing completion
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 M4   
Hardware: PC   
OS: Windows NT   
Whiteboard:

Description David Audel CLA 2001-11-20 11:37:41 EST
Step to reproduce :
- create a class X
  public class X {
    int bar;
    class Y extends X {
      void foo(){
        bar[cursor]
      }
    }
  }
- do ctrl + space in cursor location

a completion is present : this.bar
a possible completion is missing : X.this.bar
Comment 1 David Audel CLA 2001-11-20 12:24:32 EST
Another test case 

public class A {
  int bar;
}

public class X extends A{
  class Y extends A{
    void foo(){
      bar[cursor]
    }
  }
}
Comment 2 David Audel CLA 2002-03-07 11:42:56 EST

Fixed