aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qv4debugger/data/conditionalBreakPointInQml.qml
blob: ceb4edbe7ad10dfcd7399c77d75507406022aec3 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0
QtObject {
    id: root
    property int foo: 42
    property bool success: false
    Component.onCompleted: {
        success = true; // break here
    }
}