Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8331134: Port SimpleStringBuilderStrategy to use ClassFile API #18690

Closed
wants to merge 12 commits into from
Original file line number Diff line number Diff line change
@@ -1101,11 +1101,10 @@ public void accept(ClassBuilder clb) {
}});

try {
Lookup hiddenLookup = lookup.defineHiddenClass(classBytes, true, STRONG);
Lookup hiddenLookup = lookup.makeHiddenClassDefiner(className, classBytes, Set.of(STRONG), DUMPER)
.defineClassAsLookup(true);
Class<?> innerClass = hiddenLookup.lookupClass();
DUMPER.dumpClass(innerClass.getName(), innerClass, classBytes);
MethodHandle mh = hiddenLookup.findStatic(innerClass, METHOD_NAME, args);
return mh;
return hiddenLookup.findStatic(innerClass, METHOD_NAME, args);
} catch (Exception e) {
DUMPER.dumpFailedClass(className, classBytes);
throw new StringConcatException("Exception while spinning the class", e);