Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / signalWithJSValueInVariant.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     property string expression
5     property string compare
6     property bool pass: false
7     onSignalWithVariant:
8     {
9         var expected = eval(expression);
10         pass = eval(compare)(arg, expected);
11     }
12 }