1
Fork 0
mini-java/README.md

20 lines
566 B
Markdown
Raw Normal View History

2014-04-16 00:40:22 +00:00
MiniJava Compiler
=================
2014-04-26 17:23:14 +00:00
[Version 1.0.0 - 04/26/2014]
2014-04-16 00:40:22 +00:00
2014-04-26 17:23:14 +00:00
The following is a complete MiniJava Compiler implementation, according to the specifications in the docs folder.
2014-04-16 00:40:22 +00:00
2014-04-26 17:23:14 +00:00
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