aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconsole/data/profiling.qml
blob: fc655ab26ce77fe53561a800fdf8b7f8f2c03d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 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

QtObject {
    Component.onCompleted: {
        console.profile("profile1");
        console.time("timer1");
        console.timeEnd("timer1");
        console.profileEnd("profile1");
    }
}