qml_static_analyzer 0.2.0

A static analyzer for QML files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Item {
    id: statusBar

    property string message: "Ready"
    property bool busy: false

    function showMessage(msg) {
        message = msg
        busy = false
    }
}