Jeff Williams 7a2e561e11
fix(jsdoc-parse): use the correct scopes when exported objects have properties
Previously, JSDoc parsed the test code and found the namepath `module:icecream.FLAVORS` (correct), but also `module:icecream~FLAVORS.VANILLA` (wrong, because `FLAVORS` is a static member of the module, not an inner member).

With this change, JSDoc should consistently identify `FLAVORS` as a static member of `module:icecream`.
2025-05-15 20:40:45 -07:00
..