aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/javascript/data/stringQObjectProperty.qml
blob: ccd8a791b6c3cc5cbce356bc53a914f4c8fdadcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt.test 1.0

TestObject {
    id: root

    function runtest() {
        var r = root;

        for (var ii = 0; ii < 5000000; ++ii) {
            r.stringValue
        }
    }
}