qtdeclarative/tests/benchmarks/qml/javascript/data/localId.qml

14 lines
227 B
QML
Raw Normal View History

2011-06-10 03:46:44 +00:00
// Benchmarks the cost of accessing an id in the same file as the script.
import QtQuick 2.0
2011-06-10 03:46:44 +00:00
QtObject {
id: root
function runtest() {
for (var ii = 0; ii < 5000000; ++ii) {
root
}
}
}