ghc-mirror
ghc-mirror
**Original reporter**: _duncan_ Suppose you're refactoring to use smart constructors. So you switch from exporting: ``` haskell data WindowBits = WindowBits Int | DefaultWindowBits ``` to: ``` haskell data WindowBits...
**Original reporter**: _naesten@_ for some reason, ``` haskell newtype P a = P { runP :: String -- ^ Input string -> Int -- ^ Current column -> Int --...
**Original reporter**: _matti.niemenmaa+haddockbugs@_ Currently there is no way of using the same piece of Haddock documentation for two different declarations, apart from copying and pasting it, which can easily lead...
**Original reporter**: @tibbe Markdown has become the standard markup for writing programming documentation (and blog posts and so on). It would be nice if Haddock could support a superset of...
**Original reporter**: _sol@_ It would be nice if we could link to certain sections withing a document. Example: ``` haskell module Foo ( -- * Foo .. .. -- *...
**Original reporter**: _justnika@_ As a result you get a doc like in the attached file[[Image(screenshot.png)]]
**Original reporter**: _jan.stolarek@_ When I enable detailed spark logging via -lf flag I end up with huge eventlog files (130MB). Attempting to load these into ThreadScope practically kills my OS...
**Original reporter**: _ecrockett3@_ I just installed threadscope-0.2.2, and profiled my program (running with -ls -N4). When I load threadscope, it starts loading HECs, but then complains that there was a...
**Original reporter**: _jan.stolarek@_ When I load an eventlog, zoom in, update the eventlog (rerun the program that generates it) and finally reload eventlog in TS the graphs are not redrawn....
**Original reporter**: _shelarcy_ Debug.Trace.traceEventIO output Unicode characters by UTF-8 String. - http://www.haskell.org/ghc/docs/7.4.1/html/libraries/base-4.5.0.0/Debug-Trace.html#v:traceEventIO "ghc-events show" can show output Unicode characters' user event correctly. ``` import Debug.Trace main = do traceEventIO "テスト"...