<div dir="ltr">I'm reviving this old thread, because I am talking to a student who is interested in working on this as a project for Google Summer of Code.  I'm happy to be a mentor, but this student could use another mentor who could help with GHC internals for building a GHC plugin.<div><br></div><div>The project would be to implement a domain-specific language for giving assignment or exercise requirements for Haskell programs, and a GHC plugin that allows the code to be run in a mode that validates those requirements.  The plugin would inject code into the resulting program for running in validation mode to do the checks.  Sometimes, the rules are about the source code -- e.g., "every top-level definition must be accompanied by a type signature", or "no lines longer than 80 characters", or "the program must use a list comprehension" -- in which case the plugin would look at the source code or AST at build time, check assertions about what's there, and inject trivial code to report the result when the program is run.  Other times, rules could be about runtime properties or behavior, in which case the injected code would actually run tests to validate the behavior.</div><div><br></div><div>If anyone is interested in mentoring a student working on this project, please contact me and I'll pass along the info.  (I cannot post the student's details publicly, because Summer of Code proposals aren't supposed to be public at this stage, but I can forward responses directly to the student involved.)</div><div><br></div><div>Thanks,</div><div>Chris</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Nov 21, 2018 at 12:04 PM Matthew Pickering <<a href="mailto:matthewtpickering@gmail.com">matthewtpickering@gmail.com</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">Nothing to add other than this sounds just like the sort of thing that<br>
will be easy to implement as a source plugin.<br>
<br>
You might find my plugins resource page useful:<br>
<a href="http://mpickering.github.io/plugins.html" rel="noreferrer" target="_blank">http://mpickering.github.io/plugins.html</a><br>
<br>
In particular, this post about how to construct expressions:<br>
<a href="http://mpickering.github.io/posts/2018-06-11-source-plugins.html" rel="noreferrer" target="_blank">http://mpickering.github.io/posts/2018-06-11-source-plugins.html</a><br>
<br>
Cheers,<br>
<br>
Matt<br>
On Tue, Nov 20, 2018 at 6:47 PM Chris Smith <<a href="mailto:cdsmith@gmail.com" target="_blank">cdsmith@gmail.com</a>> wrote:<br>
><br>
> Hey everyone,<br>
><br>
> I'm converging on a design for a new feature of CodeWorld, the Haskell-based educational programming environment that I teach with.  I'm wondering if anyone has done something like this before.<br>
><br>
> The goal is that when I give an assignment in a class (e.g., "modify this starting code to generalize the repeated pattern using a function"), I want the user to see a checklist of assignment requirements when they run the code.  A prototype implementation is here: <a href="https://code.world/haskell#PpwpTF1wv3qIvwhohCfvSrQ" rel="noreferrer" target="_blank">https://code.world/haskell#PpwpTF1wv3qIvwhohCfvSrQ</a><br>
><br>
> There are all sorts of possible requirements, such as: "No lines longer than 80 characters", or "there must be a function called foo", or "all top-level definitions must have type signatures", or "your code must define at least 10 top-level variables, and use at least 3 where clauses", or "your definition of var should be equivalent to this one" (see Joachim Breitner's inspection testing work), or even "the function f must satisfy this QuickCheck property".  It's been suggested that the requirements language also include the ability to match patterns in the AST, which I think is a good idea.<br>
><br>
> The current prototype uses a pre-compile step that parses the code using haskell-src-exts, and doesn't implement dynamic requirements (runtime-evaluated) at all.  My ultimate plan, though, is to send these requirements to GHC via a plugin, then have it evaluate the static ones at compile time, and generate code to check the dynamic ones.  Finally, the plugin would add new code to the beginning of main that will invoke a configurable function with the results of the requirement check (hard-coding the static ones, and evaluating dynamic ones on the fly).  (In the CodeWorld environment, this function would display the checklist in the web UI, for example.)<br>
><br>
> Has anyone done anything like this before?  Any wisdom to share, or ideas to contribute?<br>
><br>
> Thanks,<br>
> Chris<br>
> _______________________________________________<br>
> Haskell-Cafe mailing list<br>
> To (un)subscribe, modify options or view archives go to:<br>
> <a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
> Only members subscribed via the mailman list are allowed to post.<br>
</blockquote></div>