<div dir="ltr">I'm generally in favour. But I'm not convinced that the secondary changes (points 4–7) are worth it. They are certainly better place than we are today, but are they worth breaking existing code for? Point 5–7 can probably be replaced by warnings. I don't know about 4.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Oct 19, 2021 at 11:20 PM Richard Eisenberg <<a href="mailto:rae@richarde.dev">rae@richarde.dev</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
I am the shepherd for proposal #425, <a href="https://github.com/ghc-proposals/ghc-proposals/pull/425" rel="noreferrer" target="_blank">https://github.com/ghc-proposals/ghc-proposals/pull/425</a>, proposing to add invisible binders in type declarations.<br>
<br>
The main payload of the proposal is to allow definitions like<br>
<br>
> data Proxy @k (a :: k) = Proxy<br>
<br>
instead of today's<br>
<br>
> data Proxy (a :: k) = Proxy<br>
<br>
which has no explicit binding site for k.<br>
<br>
This new syntax solves a number of smallish syntax conundra, as very well outlined in the proposal.<br>
<br>
In addition, the proposal includes two small unrelated tweaks to the syntax of type family instances; these are points (6) and (7) in the proposal. Both changes will break some obscure (but still realistic, knowing Haskell) programs, but both fixes are backward compatible.<br>
<br>
---<br>
<br>
I recommend acceptance. The proposal is motivated nicely (do check out the examples) and solves a real problem. The new syntax fits in with other similar features. The small cleanups to existing syntax will lead to better error messages.<br>
<br>
The one drawback, as I see it, is that this proposal includes point (5), which is a breaking change to the way type synonyms work. Right now, we can say<br>
<br>
> type P = (Proxy :: k -> Type)<br>
<br>
and GHC will infer P :: forall k. k -> Type. Under this proposal, you would have to write<br>
<br>
> type P @k = (Proxy :: k -> Type)<br>
<br>
bringing k into scope explicitly. The fix is not backward compatible, and so I think this proposal should come with a migration strategy, where we warn about the former version for some releases before banning it. (Continuing to support it is possible, but it's very awkward to have a variable mentioned only in a synonym's right-hand side.)<br>
<br>
Sorry for the delay in producing this recommendation!<br>
Richard<br>
_______________________________________________<br>
ghc-steering-committee mailing list<br>
<a href="mailto:ghc-steering-committee@haskell.org" target="_blank">ghc-steering-committee@haskell.org</a><br>
<a href="https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee" rel="noreferrer" target="_blank">https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee</a><br>
</blockquote></div>