aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
blob: 00cda191cc2108c69921bd98b5b20b5856b0f3c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick.tooling 1.2
Module {
    dependencies: []
    Component {
        name: "SomethingEntirelyStrange"
        prototype: "QObject"
        Enum {
            name: "AnEnum"
            values: {
                "AAA": 0,
                "BBB": 1,
                "CCC": 2
            }
        }
    }
}