summaryrefslogtreecommitdiff
path: root/test/files/run/t5604.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5604, selections on package objects.Paul Phillips2013-01-301-0/+8
[backport] 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.