1
Fork 0
Java Compiler for Java Subset
Go to file
Joshua Potter 72f3b2b497 format 2015-12-15 07:40:18 -05:00
docs Working compiler. 2014-04-26 13:23:14 -04:00
src format 2015-12-15 07:40:18 -05:00
.gitignore Removed test files 2015-03-24 11:26:56 -04:00
README.md Working compiler. 2014-04-26 13:23:14 -04:00

README.md

MiniJava Compiler

[Version 1.0.0 - 04/26/2014]

The following is a complete MiniJava Compiler implementation, according to the specifications in the docs folder.

Other Features to include in future releases

  • Static Field Initialization
  • Keyword 'null'
  • Support class constructors
  • 'for' loop
  • String type and string literals
  • Code generation for conditional operations && and ||
  • Overloaded methods
  • Inheritance of fields and methods
  • Dynamic Method Invocation
  • Support for instanceof/super