/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2012, 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
#include "DFGGraph.h"
#include "DFGVariableAccessData.h"
+#include "JSCInlines.h"
namespace JSC { namespace DFG {
index /= 26;
}
- if (m_data->isCaptured())
- out.print("*");
- else if (m_data->shouldNeverUnbox())
+ if (m_data->shouldNeverUnbox())
out.print("!");
else if (!m_data->shouldUnboxIfPossible())
out.print("~");
- out.print(AbbreviatedSpeculationDump(m_data->prediction()));
+ out.print(AbbreviatedSpeculationDump(m_data->prediction()), "/", m_data->flushFormat());
}
} } // namespace JSC::DFG