Justin Garcia

Results 5 comments of Justin Garcia

I just ran `spago docs -f ctags` on the entire package set and was unable to reproduce this. This seems to have been fixed somewhere down the line over the...

This seems to occur because of `inlineST`'s implementation that accounts for an extra abstraction that doesn't exist, for example: https://github.com/purescript/purescript/blob/81dd8ea73ad8eab9cc56be492fe5883bec59b8d0/src/Language/PureScript/CoreImp/Optimizer/MagicDo.hs#L124-L125 This might've been left over from way back when there...

I may have misunderstood the intent of `NonEmptyArray String` for response headers. Does it mean that something like: ```purescript h = headers [ Tuple "Set-Cookie" "foo=21" , Tuple "Set-Cookie" "bar=21"...

I did a bit more investigation on this issue and found out a few things for this example specifically: ```purescript type Stuff = { foo :: forall a. a ->...

Just to add my notes on this. This is what `simulate` looks like w/o inlining, plus the extra `write` for comparison: ```js var simulate = function (x0) { return function...