aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml')
-rw-r--r--tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml b/tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml
new file mode 100644
index 0000000000..ab0b542ce8
--- /dev/null
+++ b/tests/auto/qmlls/utils/data/resolveExpressionType/DerivedType.qml
@@ -0,0 +1,32 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+
+Derived2 {
+ id: self
+ function f() {
+ helloMethod()
+ let x = helloProperty;
+ helloSignal()
+ let y = HelloEnum.HelloEnumValue1
+ }
+
+ property var someMethod: helloMethod()
+ property int someProperty: helloProperty
+ property var someEnum: HelloEnum.HelloEnumValue2
+ function someHandler() { helloSignal(); }
+ onHelloSignal: someHandler
+
+ Item {
+ property var someMethod: self.helloMethod()
+ property int someProperty: self.helloProperty
+ function f() {
+ self.helloSignal()
+ }
+ }
+ helloFont.family: "helloFamily"
+ Keys.onBackPressed: someHandler
+
+ helloProperty: 42
+}