Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / urlProperty.1.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 MyQmlObject {
5     property bool result
6     urlProperty: stringProperty + "/index.html"
7     intProperty: if (urlProperty) 123; else 321
8     value: urlProperty == stringProperty + "/index.html"
9     result: urlProperty == urlProperty
10 }