Support Java lambda expressions
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Will this work for now? The way the fake paren parsing works, we will have (using '[' ']' as fake parens):
[[([a, b]) -> a] + b]
When we really want:
[([a, b]) -> [a + b]]
Comment Actions
I think we should directly try to get this right with the fake parentheses. I'll prepare a patch. Feel free to just abandon this patch.