aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/script/data/slot_complex_js.qml
blob: a9dd5abf3011a051a8ede59662cef8e1f6088340 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import Qt.test 1.0
import "slot_complex_js.js" as Logic

TestObject {
    onMySignal: { for (var ii = 0; ii < 10000; ++ii) { Logic.myCustomFunction(10); } }
}