Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
6.8
-
None
Description
Consider the following code:
import QtQuick Item { id: root property int kkk: 123 Item { property int kkk: 234 QtObject { Component.onCompleted: { console.log(kkk) // Prints 123 } } } }
[ACTUAL]Find usages of symbol kkk of console.log(kkk) finds
1. console.log(kkk)
2. property int kkk: 234
[EXPECTED]But qmlEngine uses kkk of the root object so we should have found
1. console.log(kkk)
2. property int kkk: 123