eclipse-jdt / eclipse-jdt/eclipse.jdt.core

Bug 562690 - [1.8][assist] ContentAssist not working on field init with lambda

Open
#4,063 4 comments 0 reactions 1 assignee Claimed by @srikanth-sankaran View on GitHub
content assist
Dominant language
Java
Stars
237
Forks
195
Avg merge
1d 10h
Merged PRs (30d)
49

Description

From https://bugs.eclipse.org/562690:

> Given this class:
```
public class Library {

private Consumer m1 = b -> b./*1*/builder( null );

class RecurseBuilder{
RecurseBuilder builder(Consumer cons) {
Consumer m2 = b -> b./*2*/builder( null );
return this;
}
}
}
```
> Problem at cursor before the comment `/*1*/`, no proposal. But There should be the same as if you put the cursor before `/*2*/` (here it works).

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.