Bug 6416 - Code resolve doesn't work on message send when parameters are not correct
Summary: Code resolve doesn't work on message send when parameters are not correct
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows NT
: P3 normal (vote)
Target Milestone: 2.0 M1   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-11-29 07:13 EST by David Audel CLA
Modified: 2002-01-11 09:22 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Audel CLA 2001-11-29 07:13:14 EST
Step to reproduce :
 1) create class X
   ----------------
   public class X {
      public void foo(int x){}
      public void bar(){
         foo("String");
      }
   }
   ----------------
 2) select foo in bar method
 3) press F3
Comment 1 David Audel CLA 2001-11-29 07:20:08 EST
If parameters are not correct but receiver type and selector are correct, Code 
Resolve propose the first receiver's method with the correct selector.

Fixed