Skip to content

Commit

Permalink
Re-add @TruffleBoundary for closure execute
Browse files Browse the repository at this point in the history
  • Loading branch information
DieKautz committed Feb 5, 2024
1 parent cdc55a2 commit 1d8682e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
package de.hpi.swa.trufflesqueak.util;

import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.TruffleFile;
import com.oracle.truffle.api.interop.ArityException;
import com.oracle.truffle.api.interop.InteropLibrary;
Expand Down Expand Up @@ -63,6 +64,7 @@ boolean isExecutable() {
}

@ExportMessage
@TruffleBoundary
Object execute(final Object... arguments) {
return executable.execute(arguments);
}
Expand Down

0 comments on commit 1d8682e

Please sign in to comment.