A4: JoCalf

Deadline: Wednesday, 04/18/18, 11:59 pm

This assignment may be done as an individual or with one partner. The use of a partner is optional. Sharing of code is permitted only between you and your partner; sharing among larger groups is prohibited.

A baby camel is called a calf. In this assignment you will implement an interpreter for JoCalf, a young language whose parents are OCaml and JavaScript. She also has a little bit of DNA from Racket, an untyped functional language descended from Lisp and Scheme.

Introduction

The JoCalf manual contains a brief tutorial on the features of JoCalf, followed by a description of each language feature in detail. The formal semantics gives a precise, mathematical description of the language.

Parsing and lexing has been implemented for you in the release code, as has a read-evaluate-print loop (REPL). You will implement an evaluator which implements the formal semantics. That semantics uses the big-step environment model. It extends the model we saw in class by adding a state to the machine configuration, which is used to implement references.

Assignment information

Objectives.

Recommended reading.

Requirements.

What we provide.

See below under Part 1 for a description of the release code.

Grading issues.

Permitted OCaml features. Imperative features are now permitted. Side effects are not necessarily bad! But we urge you to think carefully before choosing to use imperative features. It is quite possible to implement the interpreter without using any imperative features at all, and in fact that is how the staff reference solution is coded. Your solutions must not require linking any additional libraries/packages beyond those in the provided _tags file.

Git. Private repos are of the utmost importance. A public repo would share your code with the entire world, including your classmates, thus violating the course policy on academic integrity. Therefore we require that you keep all your CS 3110 related code in private repos. You are strongly encouraged to use the Cornell CIS GitHub rather than the public GitHub (whose URL we deliberately omit here). The main reason for this is that the CIS GitHub allows unlimited private repositories.

Part 0: Makefile

As usual, we provide a makefile.

Part 1: Read the release code

Your first task is to familiarize yourself with the structure of the release code we have shipped to you.

Part 2: Evaluation

Implement ast.ml, ast_factory.ml, eval.ml, and all test cases in test.ml.

The best way to do this work is to implement individual syntactic forms, rather than to try to complete each file individually. For example, you could decide to implement constants, or let expressions, or dereferences. Regardless, implement that syntactic form by defining AST types for it in ast.ml, makers for it in ast_factory.ml, evaluation for it in eval.ml, and test cases for it in test.ml. Then move on to another syntactic form.

There is no ideal order in which to implement the syntactic forms, but the order in which they are given in the BNF is not bad. We do recommend leaving objects until last. Also, many of the staff test cases will use the + binary operator in its various overloaded forms, so make sure to get it done, and done right.

What to turn in

Submit files with these names on CMS:

Although you should most certainly build a test suite (and we provide you with the start of one in test.ml), we will not be grading your test suite as part of this assignment. We've taught you a lot about testing: now we rely on you to use that knowledge effectively.

Assessment

The course staff will assess the following aspects of your solution. The percentages shown are the approximate weight we expect each to receive.

Karma

We don't have any karma in mind for this assignment. If you want to go above and beyond the call of 3110 duty, feel free to tell us about what you have done in your overview document. The orange camels are calling...


Acknowledgment: Inspired by The Essence of JavaScript, by Arjun Guha, Claudiu Saftoiu, and Shriram Krishamurthi, corrected version of October 3, 2015. Prof. Guha was a postdoc at Cornell approx. 2013, supervised by Prof. Foster.