Bug 10472

Summary: CodeAssist - No completion between dot and number
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 M4   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description David Audel CLA 2002-02-28 09:22:07 EST
1) create the following class
public class X {
   void foo(){
      this.<cursor>0
   }
}
2) do ctrl+space
Nothing happen, just bing.

CompletionScanner identify '.0' as a number and throw an InvalidCursorLocation 
exception.
Comment 1 Philipe Mulet CLA 2002-02-28 10:57:58 EST
Fixed, bug was in completion scanner which didn't handle dot prefixed number 
scenario. Test added.