aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qv8profilerservice/data/console.qml
blob: c23c82021692653269a93fea3302340a6d5ac593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0


Item {
    function f()
    {
    }

    Component.onCompleted:  {
        console.profile();
        f();
        console.profileEnd();
    }
}