aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlenginedebugservice/data/itemWithFunctions.qml
blob: 118b13f2d7f6d64b84fbac22e6e51c7e2fc56e61 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
Item {
    function myMethodNoArgs() { return 3; }
    function myMethod(a) { return a + 9; }
    function myMethodIndirect() { myMethod(3); }
}