Skip to content
Snippets Groups Projects
Commit 5ed80a36 authored by Olivier Goffart's avatar Olivier Goffart
Browse files

QML JS Debugger: add 'this' in the locals

parent cb6b1b54
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,8 @@ ...@@ -52,7 +52,8 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
struct JSAgentWatchData { class JSAgentWatchData {
public:
QByteArray exp; QByteArray exp;
QString name; QString name;
QString value; QString value;
...@@ -144,6 +145,20 @@ void JSDebuggerAgent::recordKnownObjects(const QList<JSAgentWatchData>& list) ...@@ -144,6 +145,20 @@ void JSDebuggerAgent::recordKnownObjects(const QList<JSAgentWatchData>& list)
knownObjectIds << data.objectId; knownObjectIds << data.objectId;
} }
QList<JSAgentWatchData> JSDebuggerAgent::getLocals(QScriptContext *ctx)
{
QList<JSAgentWatchData> locals;
if (ctx) {
QScriptValue activationObject = ctx->activationObject();
QScriptValue thisObject = ctx->thisObject();
locals = expandObject(activationObject);
if (thisObject.isObject() && thisObject.objectId() != engine()->globalObject().objectId())
locals.prepend(JSAgentWatchData::fromScriptValue("this", thisObject));
recordKnownObjects(locals);
knownObjectIds << activationObject.objectId();
}
return locals;
}
/*! /*!
Constructs a new agent for the given \a engine. The agent will Constructs a new agent for the given \a engine. The agent will
...@@ -359,10 +374,7 @@ void JSDebuggerAgent::messageReceived(const QByteArray& message) ...@@ -359,10 +374,7 @@ void JSDebuggerAgent::messageReceived(const QByteArray& message)
deep++; deep++;
} }
QList<JSAgentWatchData> locals; QList<JSAgentWatchData> locals = getLocals(ctx);
if (ctx)
locals = expandObject(ctx->activationObject());
recordKnownObjects(locals);
// Clear any exceptions occurred during locals evaluation. // Clear any exceptions occurred during locals evaluation.
engine()->clearExceptions(); engine()->clearExceptions();
...@@ -371,7 +383,7 @@ void JSDebuggerAgent::messageReceived(const QByteArray& message) ...@@ -371,7 +383,7 @@ void JSDebuggerAgent::messageReceived(const QByteArray& message)
QDataStream rs(&reply, QIODevice::WriteOnly); QDataStream rs(&reply, QIODevice::WriteOnly);
rs << QByteArray("LOCALS") << frameId << locals; rs << QByteArray("LOCALS") << frameId << locals;
sendMessage(reply); sendMessage(reply);
state = oldState;
} else if (command == "SET_PROPERTY") { } else if (command == "SET_PROPERTY") {
State oldState = state; State oldState = state;
state = Stopped; state = Stopped;
...@@ -436,13 +448,9 @@ void JSDebuggerAgent::stopped() ...@@ -436,13 +448,9 @@ void JSDebuggerAgent::stopped()
QList<JSAgentWatchData> watches; QList<JSAgentWatchData> watches;
foreach (const QString &expr, watchExpressions) foreach (const QString &expr, watchExpressions)
watches << JSAgentWatchData::fromScriptValue(expr, engine()->evaluate(expr)); watches << JSAgentWatchData::fromScriptValue(expr, engine()->evaluate(expr));
QScriptValue activationObject = engine()->currentContext()->activationObject();
QList<JSAgentWatchData> locals = expandObject(activationObject);
recordKnownObjects(watches); recordKnownObjects(watches);
recordKnownObjects(locals);
knownObjectIds << activationObject.objectId(); QList<JSAgentWatchData> locals = getLocals(engine()->currentContext());
// Clear any exceptions occurred during locals evaluation. // Clear any exceptions occurred during locals evaluation.
engine()->clearExceptions(); engine()->clearExceptions();
......
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
class JSAgentWatchData; class JSAgentWatchData;
class QScriptContext;
class JSDebuggerAgent : public QDeclarativeDebugService , public QScriptEngineAgent class JSDebuggerAgent : public QDeclarativeDebugService , public QScriptEngineAgent
{ Q_OBJECT { Q_OBJECT
...@@ -119,6 +120,7 @@ private: ...@@ -119,6 +120,7 @@ private:
void recordKnownObjects(const QList<JSAgentWatchData> &); void recordKnownObjects(const QList<JSAgentWatchData> &);
QList<JSAgentWatchData> getLocals(QScriptContext *);
QEventLoop loop; QEventLoop loop;
QHash <qint64, QString> filenames; QHash <qint64, QString> filenames;
......
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