summaryrefslogtreecommitdiff
path: root/test/files/run/t5604.check
Commit message (Collapse)AuthorAgeFilesLines
* Fixed SI-5604, selections on package objects.Paul Phillips2012-09-261-0/+8
mkAttributedSelect, which creates a Select tree based on a symbol, has been a major source of package object bugs, because it has not been accurately identifying selections on package objects. When selecting foo.bar, if foo turns out to be a package object, the created Select tree must be foo.`package`.bar However mkAttributedSelect was only examining the owner of the symbol, which means it would work if the package object defined bar directly, but not if it inherited it.