Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / assignSequenceTypes.1.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 MySequenceConversionObject {
5     intListProperty: [1, 2]
6     qrealListProperty: [1.1, 2.2]
7     boolListProperty: [false, true]
8     urlListProperty: [ "http://www.example1.com", "http://www.example2.com" ]
9     stringListProperty: [ "one", "two" ]
10     qstringListProperty: [ "one", "two" ]
11 }