aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/alias.15.qml
Commit message (Collapse)AuthorAgeFilesLines
* Qml: add test for nested group properties fixSami Shalayel2022-10-311-0/+21
| | | | | | | | | | | | Amends fed5b07980d9ae5a392a00563f70ee34fc261dbc by adding another test that also stopped crashing with fed5b07980d9ae5a392a00563f70ee34fc261dbc, to avoid any regressions of this crash in the future. Task-number: QTBUG-107795 Change-Id: I2789be2d6c089d27687ff8f64ed8a3a819ffa5a7 Pick-to: 6.4 6.2 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Fix group property bindings for aliases that point to id objectsSimon Hausmann2018-03-081-0/+12
When declaring bindings within a group property and that group property itself is a locally declared alias, then by the time we try to determine property caches for the group property we will fail as the aliases haven't been resolved yet. To fix this we can keep track of such group property declarations (encapsulated in the QQmlInstantiatingBindingContext that has all we need) and after we've resolved the aliases (added them to the property caches), we can go back and fill in the entries in the propertyCaches array for the group properties. Task-number: QTBUG-51043 Change-Id: I5613513db3977934bcc51a3df530de47d57326f9 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> Reviewed-by: Michael Brasser <michael.brasser@live.com>