Files
qt-creator/tests/auto/qml/reformatter/annotations.qml

23 lines
412 B
QML
Raw Normal View History

import QtQuick
@Annotation {}
Item {
// properties
property int foo
property alias bar: x
@Annotation2 {
someproperty: 10
}
id: someId
@Annotation3 {
someproperty: 10
}
Rectangle {
// properties
property int foo
property alias bar: x
id: someId2
}
}