qml_static_analyzer 0.2.0

A static analyzer for QML files
Documentation
import QtQuick

Item {
    id: dataSource

    property int count: 0
    property string currentItem: "none"
    property bool loading: false

    signal dataReady()
    signal errorOccurred(string message)

    function load() {
        loading = true
    }

    function clear() {
        count = 0
        currentItem = "none"
        loading = false
    }
}