qt6-bb10/qtdeclarative/tests/auto/qml/qmlformat/data/largeBindings.qml

16 lines
222 B
QML

import QtQml
import QtQuick 2
QtObject
{
// THIS NEEDS TO BE LAST
largeBinding: {
var x = 300;
console.log(x);
}
small1: 3
small2: foo
smallButNeedsBraces: if (foo) { bar(); }
}