Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 402080 - [1.8][code select] Unable to navigate to method declaration from method reference
Summary: [1.8][code select] Unable to navigate to method declaration from method refer...
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 4.3   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: BETA J8   Edit
Assignee: Srikanth Sankaran CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 402079
  Show dependency tree
 
Reported: 2013-02-28 20:22 EST by Srikanth Sankaran CLA
Modified: 2013-11-24 03:05 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 Srikanth Sankaran CLA 2013-02-28 20:22:31 EST
BETA_JAVA8:

I am unable to control+click or use F3 to jump to declaration from the
method reference. Constructor reference may also be broken:

// ---
interface I {
    String foo(String x);
}

public class X {
    public  String goo(String x) {
        return null;
    }
    void foo()
    {
    	X x = new X();
    	I i = x::goo;  // control+click/F3 on goo.
    }
}