qml_static_analyzer 0.2.0

A static analyzer for QML files
Documentation
import QtQuick

Item {
    id: listView

    property var model: dataSource.count
    property string selectedItem: dataSource.currentItem
    property bool isLoading: dataSource.loading

    signal selectionChanged(string item)

    function refresh() {
        dataSource.load()
    }

    function clearAll() {
        dataSource.clear()
        selectedItem = "none"
    }
}