We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b39a56 commit cc48643Copy full SHA for cc48643
src/main/java/org/truffleruby/core/method/MethodEntry.java
@@ -23,12 +23,12 @@ public final class MethodEntry {
23
24
public MethodEntry(InternalMethod method) {
25
assert method != null;
26
- this.assumption = Truffle.getRuntime().createAssumption();
+ this.assumption = Truffle.getRuntime().createAssumption("method is not overridden:");
27
this.method = method;
28
}
29
30
public MethodEntry() {
31
+ this.assumption = Truffle.getRuntime().createAssumption("method is not defined:");
32
this.method = null;
33
34
0 commit comments