-
-
Save woess/90ff49f009f182c5276e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/som/vmobjects/SBlock.java b/src/som/vmobjects/SBlock.java | |
| index fc38982..bd1dde1 100644 | |
| --- a/src/som/vmobjects/SBlock.java | |
| +++ b/src/som/vmobjects/SBlock.java | |
| @@ -96,11 +96,11 @@ public abstract class SBlock extends SAbstractObject { | |
| return method; | |
| } | |
| - public MaterializedFrame getContext() { | |
| + public final MaterializedFrame getContext() { | |
| return CompilerDirectives.unsafeFrameCast(context); | |
| } | |
| - public Object getOuterSelf() { | |
| + public final Object getOuterSelf() { | |
| return FrameUtil.getObjectSafe(getContext(), outerSelfSlot); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment