aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmldebugjs/data/test.qml
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2012-04-17 11:00:18 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-17 11:10:04 +0200
commit812997036a44733c3407d925f42d98c4ff0e6c6f (patch)
tree45e6b027c82468e7c82db5203bb9b164efb7a0c0 /tests/auto/qml/debugger/qqmldebugjs/data/test.qml
parent18d6bf40169a5765ee35f00131d470fd64125e22 (diff)
QV8DebugService: v8::AfterCompile Events
Do not send v8::AfterCompile events. This speeds up the debugger. Change-Id: I84f5d90e24878af42d514e5d26c9e051502605f6 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'tests/auto/qml/debugger/qqmldebugjs/data/test.qml')
-rw-r--r--tests/auto/qml/debugger/qqmldebugjs/data/test.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/test.qml b/tests/auto/qml/debugger/qqmldebugjs/data/test.qml
index 200f26b1c3..e6c6faa912 100644
--- a/tests/auto/qml/debugger/qqmldebugjs/data/test.qml
+++ b/tests/auto/qml/debugger/qqmldebugjs/data/test.qml
@@ -50,5 +50,11 @@ Item {
var c
var d = 12
}
+ function foo() {
+ var a = [1, 2]
+ var b = {a: "hello", d: 1 }
+ var c
+ var d = 12
+ }
}