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
import QtQuick
import QtQuick.Controls

// Base component – no errors, used as foundation for ChildPanel
Rectangle {
    id: basePanel

    property color panelColor: "blue"
    property int itemCount: 0
    property string labelText: "Default"
    property bool loading: false

    signal itemSelected(int index)
    signal dataLoaded()
    signal panelClosed()
}