On this page:
5.1 Extra credit
Submission
8.14

5 Simple Macros🔗

Due: Wednesday, January 29, 11:59pm.

Starter code: hw5-starter.rkt.

Implement the macros sketched in the starter file. For each macro:

For cases, you will need to transform the grammar so that it has one top-level option, like we did in class for cond. Write the transformed grammar as part of the comment above cases in your submission.

You should write the patterns for your macro such that expansion raises a syntax error for any inputs that do not follow the grammar. Improving the quality of the resulting error messages and unit testing error behaviors is extra credit.

5.1 Extra credit🔗

Use features of syntax-parse such as define-syntax-class, existing syntax classes such as id and expr/c, and ~! to provide better error messages than the defaults when the user’s code does not match the expected structure. These were not fully covered in class, so this will require some extra reading of the documentation.

Write test cases using convert-compile-time-error that demonstrate these improved errors. Include a comment with the test case describing the improvement.

Submission🔗

Submit to Gradescope, in a group submission with your partner: https://www.gradescope.com/courses/941020/assignments/5652889/

Upload your submission as a single hw5.rkt file.