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
15
16
17
18
import QtQuick

Rectangle {
    id: card

    property string cardTitle: "Card"
    property string cardBody: ""
    property color backgroundColor: "white"
    property bool elevated: false

    signal cardClicked()

    function setContent(title, body) {
        cardTitle = title
        cardBody = body
    }
}