Skip to content
Snippets Groups Projects
Commit 04eaa6a4 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

print external pointers

parent b445fa70
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ final class ExternalPtrPrinter extends AbstractValuePrinter<RExternalPtr> {
@Override
@TruffleBoundary
protected void printValue(RExternalPtr value, PrintContext printCtx) throws IOException {
// like in RDeparse
// same like in RDeparse
if (value.getAddr().isLong()) {
printCtx.output().print(String.format("<pointer: %s>", Double.toHexString(value.getAddr().asAddress())));
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment