qtdeclarative/tests/benchmarks/qml/script/data/slot_simple_js.qml

11 lines
269 B
QML
Raw Normal View History

// 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_simple_js.js" as Logic
TestObject {
onMySignal: { for (var ii = 0; ii < 10000; ++ii) { Logic.myCustomFunction(); } }
}