Re: GHC HEAD documentation once again available

2019-03-30 Thread Vladislav Zavialov
Hi Ben, The generated Libraries page contains the following line: For documentation on the GHC API, see ghc-8.9.20190330/index.html The link is dead and should be ghc-8.9/index.html instead. All the best, - Vlad > On 31 Mar 2019, at 03:56, Ben Gamari wrote: > > TL;DR. A snapshot of GHC's

Re: GitHub Mirror is broken

2019-03-30 Thread Phyx
Hi Ben, I think the mirror is stuck again. Hasn't updated in 8 days. Cheers, Tamar On Tue, Feb 19, 2019 at 6:30 AM Ben Gamari wrote: > Artem Pelenitsyn writes: > > > Hello devs, > > > > This is just to let you know that the latestes commit on GitHub ghc/ghc > > repo dates back to 22th of

GHC HEAD documentation once again available

2019-03-30 Thread Ben Gamari
TL;DR. A snapshot of GHC's documentation from the master branch can always be found at [2]. Hi everyone, Quite a while ago I made it a habit of periodically pushing documentation snapshots from GHC's master branch to downloads.haskell.org [1]. Unfortunately, despite some attempts at

Re: Newtypes in STG

2019-03-30 Thread Christopher Done
Oh, also my complete pipeline is here: https://github.com/chrisdone/prana/blob/0cbb7b4b96bbfdb4f0d6a60e08f4b1f53abdfb15/prana-ghc/src/Prana/Ghc.hs#L106-L154 Parse/typecheck/desugar, tidy, prep, core-to-stg (ripped from HscMain) and then I try to resolve all names in the AST and that leads me to

Newtypes in STG

2019-03-30 Thread Christopher Done
Hi all, Could you offer some insight into newtypes at the STG level? Here’s the context: 1. I’m working on this interpreter for STG (https://github.com/chrisdone/prana) and I’m trying to generate a pristine AST where all names in it are resolved to something known to me. 2.