1
Fork 0
Java Compiler for Java Subset
Go to file
Joshua Potter 2f673d60b7 Create README.md 2014-04-15 20:40:22 -04:00
docs Added documentation on compilation phase 2014-04-15 15:37:08 -04:00
src Code generation / compilation complete. 2014-04-15 15:32:46 -04:00
.gitignore Recursive Descent Parsing 2014-02-15 21:00:29 -05:00
README.md Create README.md 2014-04-15 20:40:22 -04:00

README.md

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.