Skip to content

Commit 4acafb8

Browse files
committedMay 30, 2024
8333107: javac fails with an exception when processing broken lambda
Reviewed-by: asotona
1 parent 921860d commit 4acafb8

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/AttrRecover.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -151,10 +151,12 @@ public <T extends JCTree> T translate(T t) {
151151
@Override
152152
public void visitLambda(JCLambda tree) {
153153
//do not touch nested lambdas
154+
result = tree;
154155
}
155156
@Override
156157
public void visitClassDef(JCClassDecl tree) {
157158
//do not touch nested classes
159+
result = tree;
158160
}
159161
}.translate(lambda.body);
160162
if (!voidCompatible && lambda.body.hasTag(Tag.BLOCK)) {

‎test/langtools/tools/javac/recovery/AttrRecovery.java

+47-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8301580 8322159 8332230
26+
* @bug 8301580 8322159 8333107 8332230
2727
* @summary Verify error recovery w.r.t. Attr
2828
* @library /tools/lib
2929
* @enablePreview
@@ -157,4 +157,50 @@ public void t() {
157157
}
158158
}
159159

160+
@Test //JDK-8333107
161+
public void testNestedLambda() throws Exception {
162+
String code = """
163+
public class Dummy {
164+
private void main() {
165+
Stream l = null;
166+
l.map(a -> {
167+
l.map(b -> {
168+
return null;
169+
});
170+
l.map(new FI() {
171+
public String convert(String s) {
172+
return null;
173+
}
174+
});
175+
class Local {}
176+
});
177+
}
178+
public interface Stream {
179+
public void map(FI fi);
180+
}
181+
public interface FI {
182+
public String convert(String s);
183+
}
184+
}
185+
""";
186+
Path curPath = Path.of(".");
187+
List<String> actual = new JavacTask(tb)
188+
.options("-XDrawDiagnostics", "-XDdev",
189+
"-XDshould-stop.at=FLOW")
190+
.sources(code)
191+
.outdir(curPath)
192+
.run(Expect.FAIL)
193+
.writeAll()
194+
.getOutputLines(OutputKind.DIRECT);
195+
196+
List<String> expected = List.of(
197+
"Dummy.java:4:10: compiler.err.cant.apply.symbol: kindname.method, map, Dummy.FI, @15, kindname.interface, Dummy.Stream, (compiler.misc.no.conforming.assignment.exists: (compiler.misc.incompatible.ret.type.in.lambda: (compiler.misc.missing.ret.val: java.lang.String)))",
198+
"1 error"
199+
);
200+
201+
if (!Objects.equals(actual, expected)) {
202+
error("Expected: " + expected + ", but got: " + actual);
203+
}
204+
}
205+
160206
}

0 commit comments

Comments
 (0)
Please sign in to comment.