aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/customExtendedParserProperties.qml
blob: e53a7c6bd542375e25e30a83ca93658820f4f821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Test 1.0
import QtQml 2.0
SimpleExtendedObjectWithCustomParser {
    id : obj
    intProperty: 42
    property string qmlString: "Hello"
    property var someObject: QtObject {}

    property int c : obj.extendedProperty

    function getExtendedProperty() { return c; }
}