qt6-bb10/qtdeclarative/tests/benchmarks/qml/javascript/data/nestedId.qml

14 lines
230 B
QML

// Benchmarks the cost of accessing an id in a parent context of the script.
import QtQuick 2.0
QtObject {
id: root
property variant object: NestedIdObject {}
function runtest() {
object.runtest();
}
}