aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2016-01-20 13:57:16 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-01-21 14:49:43 +0000
commitce093497f2d4164fa8abc06cf976f9e36798e11e (patch)
tree98c3926f5a64b4bf8f8b3838b6fbcde8ad9152c7 /src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h
parentebb08ee84e8141042ed16dfc5892697ef96077c4 (diff)
Clean up QV4DataCollector
We don't need to pass engines around as the data collector already has all the necessary information. Also, the exception collect job is only used in the test case, so we don't need to define it in the collector. Change-Id: I9e9f092a10295e3dc970f7b5f440e8f242ea1d54 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h')
-rw-r--r--src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h b/src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h
index a1adbeff40..721f42b7c2 100644
--- a/src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h
+++ b/src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h
@@ -154,18 +154,6 @@ public:
const QStringList &result() const;
};
-class ExceptionCollectJob: public QV4DebugJob
-{
- QV4::ExecutionEngine *engine;
- QV4DataCollector *collector;
- QV4DataCollector::Ref exception;
-
-public:
- ExceptionCollectJob(QV4::ExecutionEngine *engine, QV4DataCollector *collector);
- void run();
- QV4DataCollector::Ref exceptionValue() const;
-};
-
class EvalJob: public JavaScriptJob
{
bool result;