Ticket #78 (closed defect: fixed)
Quoting full qualified names to refer to entities that are not in scope don't work.
| Reported by: | gsan@… | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Version: | 2.4.2 | Keywords: | |
| Cc: |
Description
References to entities that are exported by another module, but not imported by the current one don't work, though single quotes are removed.
module Other (other, test2) where -- | Doc other :: Int other = 2 -- | Doc test2 :: Bool test2 = False
module Test (test) where import Other (test2) import Data.Maybe -- | These links don't work: 'other', 'Other.other', 'Data.List.sortBy'. -- These do work: 'test2', 'Other.test2', 'Data.Maybe.fromMaybe'. test :: Int test = 1
Interestingly enough, full qualified names get detected in prologue (index.html) but they're not hyperlinked. Tested on 2.4.1 and 2.4.2.
Change History
Note: See
TracTickets for help on using
tickets.
