diff --git a/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/interop/JavaObjectWrapper.java b/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/interop/JavaObjectWrapper.java index 281fb94d6..e73423f0e 100644 --- a/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/interop/JavaObjectWrapper.java +++ b/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/interop/JavaObjectWrapper.java @@ -166,7 +166,7 @@ private boolean ignoredForAOT(final Method method) { return !ArrayUtils.containsEqual(new String[]{"getCanonicalName", "getName", "getSimpleName", "isInstance", "toString"}, methodName); case "SubstrateTruffleRuntime": case "GraalTruffleRuntime": // superclass of SubstrateTruffleRuntime - return !ArrayUtils.containsEqual(new String[]{"getCompileQueue", "getName", "toString"}, methodName); + return !ArrayUtils.containsEqual(new String[]{"getCompileQueue", "getCompilationQueueSize", "getName", "toString"}, methodName); case "BackgroundCompileQueue": return !ArrayUtils.containsEqual(new String[]{"getQueueSize", "toString"}, methodName); default: