use of com.oracle.truffle.api.debug.DebugValue.HeapValue in project graal by oracle.
the class DebugStackFrame method wrapHeapValue.
DebugValue wrapHeapValue(Object result) {
LanguageInfo language;
RootNode root = findCurrentRoot();
if (root != null) {
language = root.getLanguageInfo();
} else {
language = null;
}
return new HeapValue(event.getSession().getDebugger(), language, null, result);
}
Aggregations