bfrk

Results 11 issues of bfrk

Could you add build instructions and tool requirements to the readme? It didn't build for me with ghc-8.2.2 and cabal-2.4.

``` $ stylish-haskell --version 1 stylish-haskell 0.14.1.0 $ echo 'data Item = Item { iBase :: !(Ptr ()) } deriving Show'|stylish-haskell :4:10: error: parse error on input `(' ``` I...

Apparently fltkhs depends on c2hs to generate the bindings. Mentioning this package as a dependency seems to work, at least when building with cabal in a sandbox.

Subject quoted literally from the man page. Just to say: yes, that would be very nice.

## Problem This is similar (and probably related) to #474, only with `=` instead of `do`: Input haskell ``` val = -- comment some code ``` Expected output haskell (identical...

Nicolas Wu and Tom Schrijvers have [explained how to completely fuse away the intermediate syntax trees](https://people.cs.kuleuven.be/%7Etom.schrijvers/Research/papers/mpc2015.pdf), leading to extremely efficient code. Have you considered implementing that?

I guess there is not much more to be said here. I can provide simple test program if desired.

When a property test succeeds and QC's classify function has been used, the output now has additional information about the distribution of test cases. Example outputs: [OK, passed 1000 tests...

I find it peculiar that the monad here is not explicitly exposed, nor even mentioned in the docs. I currently have a module where I define it myself: ``` newtype...

`bool Stream::process()` initializes the status to `NO_ALARM`, then calls `startProtocol`, and if that fails sets `recGblSetSevr(record, status, INVALID_ALARM)`. This means the record will have `STAT=NO_ALARM` and `SEVR=INVALID` which is a...

bug