| Summary: | [xtend][contentassist] Missing proposals in closure body | ||
|---|---|---|---|
| Product: | [Tools] Xtend | Reporter: | Sebastian Zarnekow <sebastian.zarnekow> |
| Component: | Core | Assignee: | Project Inbox <xtend-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | major | ||
| Priority: | P3 | CC: | sven.efftinge |
| Version: | 2.2.0 | Flags: | sven.efftinge:
juno+
|
| Target Milestone: | RC3 | ||
| Hardware: | PC | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
Pushed to master. Requested via bug 522520. -M. |
def doStuff(List<String> it) { map[<cursor>] } Only class names are proposed at the cursor position. I'd expect toUpperCase and the like. def doStuff(List<String> it) { sortBy [length].map[ it.<cursor> ] } Only members of Object are proposed here. Works fine for def doStuff(List<String> it) { sortBy [length].map[ it.tUC<cursor> ] }