Lennart Spitzner
Lennart Spitzner
The underlying issue is that `Sdl2Window` conflates singleton initialization and window instance initialization when it calls `sdl2::init` in its `new` method. I am not sure if this is a) not...
When browsing the versions of a package, if the currently viewed package is deprecated, there should be a warning (similar to the warning for entirely deprecated packages).
I have observed on multiple (but random) times that `alt-backspace` exits my program without any trace of an error message, instead of it doing what the program is supposed to...
Similar to #52, ~~~~.hs data StupidExistential a where StupidExistential :: forall a . StupidExistential a ~~~~ breaks when using exactprint on just this module element (I think layouting the whole...
Considering the elements of annsDP, and the anchor of DPs for the contained elements: - for comments `(AnnComment _, _someDP)` the DP is relative to the "current cursor position", i.e....
code to reproduce: ~~~~.hs module Main where import DynFlags ( getDynFlags ) import GHC ( runGhc, GenLocated(L), moduleNameString ) import qualified DynFlags as GHC import qualified GHC as GHC hiding...
Sorry, but I will nag once more about the logic behind DeltaPositions/`addEntryDelta`, and under what circumstances the "layouting context" (in relation to which positions are expressed) changes. Consider: ~~~~.hs func...
Imo the `unsafeGlobalDynFlags` justify adding a pure wrapper, because "unsafe" and no real documentation that i can find if it is ok to use them. This probably needs ghc-api additions,...
My project named "foo" contained Foo.cabal. cabal check reported no problems at all. Hackage does not accept the package, because "missing 'foo.cabal'". Furthermore, I tested if cabal check just ignores...
I just did the above and cabal decided to recompile the deps (which is a bit surprising on its own, but probably correct since deps might start breaking if they...