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 241b7fd commit c5645caCopy full SHA for c5645ca
src/main/java/org/truffleruby/language/RubyBaseRootNode.java
@@ -11,6 +11,7 @@
11
12
import com.oracle.truffle.api.TruffleLanguage;
13
import com.oracle.truffle.api.frame.FrameDescriptor;
14
+import com.oracle.truffle.api.nodes.Node;
15
import com.oracle.truffle.api.nodes.RootNode;
16
import com.oracle.truffle.api.source.SourceSection;
17
import org.truffleruby.RubyContext;
@@ -41,7 +42,7 @@ public boolean isInternal() {
41
42
}
43
44
@Override
- public boolean isCaptureFramesForTrace(boolean compiledFrame) {
45
+ public boolean isCaptureFramesForTrace(Node currentNode) {
46
return false;
47
48
0 commit comments