/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
+ * Copyright (C) 2013, 2015 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
void AbstractHeap::dump(PrintStream& out) const
{
out.print(kind());
- if (kind() == InvalidAbstractHeap || kind() == World || payload().isTop())
+ if (kind() == InvalidAbstractHeap || kind() == World || kind() == Heap || payload().isTop())
return;
out.print("(", payload(), ")");
}