Skip to content

Commit bd22aa5

Browse files
lahodajBernard Blaser
and
Bernard Blaser
committedDec 9, 2020
8229862: NPE in jdk.compiler/com.sun.tools.javac.jvm.Code.emitop0(Code.java:570)
Co-authored-by: Bernard Blaser <bsrbnd@openjdk.org> Reviewed-by: vromero
1 parent cf62b0a commit bd22aa5

File tree

3 files changed

+63
-2
lines changed

3 files changed

+63
-2
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1454,11 +1454,11 @@ public void visitNewClass(JCNewClass tree) {
14541454
localContext = localContext.prev;
14551455
}
14561456
}
1457+
super.visitNewClass(tree);
14571458
if (context() != null && !inReferencedClass && isLocal) {
14581459
LambdaTranslationContext lambdaContext = (LambdaTranslationContext)context();
14591460
captureLocalClassDefs(def, lambdaContext);
14601461
}
1461-
super.visitNewClass(tree);
14621462
}
14631463
//where
14641464
void captureLocalClassDefs(Symbol csym, final LambdaTranslationContext lambdaContext) {

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

+8-1
Original file line numberDiff line numberDiff line change
@@ -2827,7 +2827,14 @@ public void visitNewClass(JCNewClass tree) {
28272827
// If we have an anonymous class, create its flat version, rather
28282828
// than the class or interface following new.
28292829
if (tree.def != null) {
2830-
translate(tree.def);
2830+
Map<Symbol, Symbol> prevLambdaTranslationMap = lambdaTranslationMap;
2831+
try {
2832+
lambdaTranslationMap = null;
2833+
translate(tree.def);
2834+
} finally {
2835+
lambdaTranslationMap = prevLambdaTranslationMap;
2836+
}
2837+
28312838
tree.clazz = access(make_at(tree.clazz.pos()).Ident(tree.def.sym));
28322839
tree.def = null;
28332840
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8229862
27+
* @summary Verifying lambdas anonymous classes whose supertype captures works.
28+
* @compile LambdaConv30.java
29+
* @run main LambdaConv30
30+
*/
31+
public class LambdaConv30 {
32+
33+
public static void main(String[] args) {
34+
Integer a = 1;
35+
class Inner {
36+
int i;
37+
Inner(int i) {
38+
this.i = i;
39+
}
40+
41+
public int result() {
42+
return a * 1000 + i;
43+
}
44+
}
45+
SAM s = v -> new Inner(v) { }.result();
46+
if (s.m(2) != 1002) {
47+
throw new AssertionError("Unexpected value!");
48+
}
49+
}
50+
51+
interface SAM {
52+
int m(int v);
53+
}
54+
}

0 commit comments

Comments
 (0)
Please sign in to comment.