Remove some dead code.

Change-Id: I511252cee0b6420670af839796b2e35915c35e50
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
This commit is contained in:
Ulf Hermann 2016-01-22 15:31:11 +01:00
parent 60d27c228e
commit 2fb5c2342b
2 changed files with 0 additions and 8 deletions

View File

@ -55,9 +55,6 @@
QT_BEGIN_NAMESPACE
const QV4DataCollector::Ref QV4DataCollector::s_invalidRef =
std::numeric_limits<QV4DataCollector::Ref>::max();
QV4::CallContext *QV4DataCollector::findContext(int frame)
{
QV4::ExecutionContext *ctx = engine()->currentContext;
@ -108,17 +105,13 @@ int QV4DataCollector::encodeScopeType(QV4::Heap::ExecutionContext::ContextType s
switch (scopeType) {
case QV4::Heap::ExecutionContext::Type_GlobalContext:
return 0;
break;
case QV4::Heap::ExecutionContext::Type_CatchContext:
return 4;
break;
case QV4::Heap::ExecutionContext::Type_WithContext:
return 2;
break;
case QV4::Heap::ExecutionContext::Type_SimpleCallContext:
case QV4::Heap::ExecutionContext::Type_CallContext:
return 1;
break;
case QV4::Heap::ExecutionContext::Type_QmlContext:
default:
return -1;

View File

@ -57,7 +57,6 @@ class QV4DataCollector
public:
typedef uint Ref;
typedef QVector<uint> Refs;
static const Ref s_invalidRef;
static QV4::Heap::CallContext *findScope(QV4::ExecutionContext *ctxt, int scope);
static int encodeScopeType(QV4::Heap::ExecutionContext::ContextType scopeType);