diff options
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/data/scriptErrors.qml')
-rw-r--r-- | tests/auto/declarative/qmlecmascript/data/scriptErrors.qml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/scriptErrors.qml b/tests/auto/declarative/qmlecmascript/data/scriptErrors.qml deleted file mode 100644 index c2edb41..0000000 --- a/tests/auto/declarative/qmlecmascript/data/scriptErrors.qml +++ /dev/null @@ -1,17 +0,0 @@ -import Qt.test 1.0 - -MyQmlObject { - Script { source: "scriptErrors.js" } - Script { function getValue() { a = 10; return 0; } } - - property int t: a.value - property int w: getValue(); - property int x: undefinedObject - property int y: (a.value, undefinedObject) - - onBasicSignal: { console.log(a.value); } - id: myObj - onAnotherBasicSignal: myObj.trueProperty = false; - onThirdBasicSignal: myObj.fakeProperty = ""; -} - |