From a13c241f47991a52708d2ea689177e5b52043d7c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 5 Feb 2021 14:59:17 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 39f4609..384beed 100644 --- a/README.md +++ b/README.md @@ -31,16 +31,20 @@ methods and fields. * Inject fields +* Handle exceptions + +* Inject try-catch + ### TODO * Better tests * Execution path optimization (e.g. remove unnecessary [GOTO](https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.goto)s) + +* ~~Implement subroutines ([JSR](https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.jsr) / [RET](https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.ret))~~ -* Implement exceptions - -* Implement try-catch - * Implement subroutines ([JSR](https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.jsr) / [RET](https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.ret)) +*Note: Subroutines are prohibited as of class file version 51, so unless this project sees much use with projects targeting Java +version 1.6 or lower on very specific compilers, this implementation can be set aside until everything else is polished.* ## How do I use this?