| Summary: | [search] search results does not show internal record methods | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Kalyan Prasad Tatavarthi <kalyan_prasad> | ||||
| Component: | Core | Assignee: | Vikas Chandra <Vikas.Chandra> | ||||
| Status: | CLOSED WORKSFORME | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | ||||||
| Version: | 4.18 | ||||||
| Target Milestone: | 4.18 M3 | ||||||
| Hardware: | PC | ||||||
| OS: | Windows 10 | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 284679 [details]
seems to work with Build id: I20201103-1800
Can you try again and find out if something has been done different in the case where it works ( or doesnt work)
(In reply to Vikas Chandra from comment #1) > Created attachment 284679 [details] > seems to work with Build id: I20201103-1800 > > Can you try again and find out if something has been done different in the > case where it works ( or doesnt work) Works for me too. So Closing this bug. |
public class cls1 { record R() { public int foo() { return 0; } } } create a class as above in a Java 15 project with preview enabled. Now from MenuBar select Search > Java A search dialog comes up. In the dialog, set search string as foo with options Search For : Method Limit To: Declarations and press search button. expected: the above created method foo in record R should be shown in search results. Current Behavior: The method foo in recoord R is not shown.