Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
5ed80a36
Commit
5ed80a36
authored
14 years ago
by
Olivier Goffart
Browse files
Options
Downloads
Patches
Plain Diff
QML JS Debugger: add 'this' in the locals
parent
cb6b1b54
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/tools/qml/qmlobserver/jsdebuggeragent.cpp
+20
-12
20 additions, 12 deletions
src/tools/qml/qmlobserver/jsdebuggeragent.cpp
src/tools/qml/qmlobserver/jsdebuggeragent.h
+2
-0
2 additions, 0 deletions
src/tools/qml/qmlobserver/jsdebuggeragent.h
with
22 additions
and
12 deletions
src/tools/qml/qmlobserver/jsdebuggeragent.cpp
+
20
−
12
View file @
5ed80a36
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
src/tools/qml/qmlobserver/jsdebuggeragent.h
+
2
−
0
View file @
5ed80a36
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment