forked from qt-creator/qt-creator
This fixes that the annotations are removed. The indentation still has issues. Change-Id: I6752767e00e0fafe8eb567066db3b9952f0d0a4f Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
23 lines
412 B
QML
23 lines
412 B
QML
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
|
|
}
|
|
}
|