Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ public Object executeDispatch(
final Object methodName,
DynamicObject blockObject,
final Object[] argumentsObjects) {
CompilerDirectives.transferToInterpreterAndInvalidate();
CompilerDirectives.transferToInterpreter();

// Make sure to have an up-to-date Shape.
if (receiverObject instanceof DynamicObject) {
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
public abstract class ShapeCachingGuards {

public static boolean updateShape(DynamicObject object) {
CompilerDirectives.transferToInterpreterAndInvalidate();
CompilerDirectives.transferToInterpreter();
return object.updateShape();
}

0 comments on commit 0940631

Please sign in to comment.