<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <font face="monospace">I also wanted such a feature but eventually I
      just went with:<br>
      <br>
      __todo :: String -> a<br>
      {-# WARNING __todo "TODO" #-}<br>
      __todo msg = error $ "TODO: " ++ msg<br>
      <br>
      __fixme :: a -> a<br>
      {-# WARNING __fixme "FIXME" #-}<br>
      __fixme = id<br>
      <br>
      Cheers,<br>
      Zilin<br>
    </font><br>
    <div class="moz-cite-prefix">On 18/05/15 12:47, Richard Eisenberg
      wrote:<br>
    </div>
    <blockquote
      cite="mid:CE7CA997-7B00-4464-87DA-2E6E3CBCFE66@cis.upenn.edu"
      type="cite">
      <pre wrap="">-1

I like the idea of having GHC spit out warnings and such of this form, but this is so straightforward to do with Template Haskell:

$([] <$ reportWarning "Fix this function!")

You could do something similar in terms, spitting out `id` instead of an empty list of declarations. (You'd have to be careful where you do this, admittedly.)

If it's this easy to do in userland without affecting the compiler, let's do it that way. And, even better, with some library support, you could customize this behavior in all sorts of ways.

Richard

On May 17, 2015, at 4:10 PM, Roman Cheplyaka <a class="moz-txt-link-rfc2396E" href="mailto:roma@ro-che.info"><roma@ro-che.info></a> wrote:

</pre>
      <blockquote type="cite">
        <pre wrap="">On 17/05/15 19:42, Christopher Done wrote:
</pre>
        <blockquote type="cite">
          <pre wrap="">What's the feeling on having a FIXME pragma so that I can attach
warnings to unfinished things?

|{-# FIXME foo "Reasons here." #-}|

I would use the WARNING pragma but that doesn't work within a module and
only triggers on use. Compiler errors are the one thing I and everyone
else pays attention to, it would be very handy to have more control over
things GHC reports to the developer to aid development.
</pre>
        </blockquote>
        <pre wrap="">
+1. I actively use WARNING in such cases, and I'd prefer the warning to
be reported at the definition site.

It'd also be great to allow this pragma anywhere in the code, but I
realize it'd complicate the parser.

Roman

_______________________________________________
Haskell-Cafe mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Haskell-Cafe@haskell.org">Haskell-Cafe@haskell.org</a>
<a class="moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a>
</pre>
      </blockquote>
      <pre wrap="">
_______________________________________________
Haskell-Cafe mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Haskell-Cafe@haskell.org">Haskell-Cafe@haskell.org</a>
<a class="moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>