aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmldebugjs/data/breakPointIds.qml
blob: c3e7687831b3b970e7077c3d1a2641797686d354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQml 2.15
Timer {
    Component.onCompleted: {
        console.log('0')
        console.log('1')
        console.log('2')
        console.log('3')
        console.log('4')
        console.log('5')
        running = true
    }

    interval: 0
    onTriggered: Qt.quit()
}