qml_static_analyzer 0.2.0

A static analyzer for QML files
Documentation
import QtQuick

Item {
    id: container

    property int width: 200
    property int height: 100
    property string title: "Panel"
    property var content

    signal titleChanged(string newTitle)

    function setTitle(newTitle) {
        title = newTitle
    }

    Rectangle {
        id: background
        property bool visible: true
    }
}