qtdeclarative/tests/benchmarks/declarative/javascript/data/nestedId.qml

14 lines
230 B
QML
Raw Normal View History

2011-06-10 03:46:44 +00:00
// Benchmarks the cost of accessing an id in a parent context of the script.
import QtQuick 1.0
QtObject {
id: root
property variant object: NestedIdObject {}
function runtest() {
object.runtest();
}
}