From 2f673d60b795227f786a8d16dcd236750a58d228 Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Tue, 15 Apr 2014 20:40:22 -0400 Subject: [PATCH] Create README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..99535e3 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +MiniJava Compiler +================= + +[Version 1.0.0 - 04/15/2014] + +The following is a LL(1) compiler for a subset of Java, denoted MiniJava. As of now, it appears to work for the most +part, passing the regression tests performed after each segment. + +Noted bugs: +* Changing a field of an object in an array causes crashes + This is not really a surprise, considering the Contextual Analysis aspect of the project + is in fairly rough shape. + +As of now, I do not plan on implementing more things to this, unless there is some potential for extra credit.