You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that your tool is outputting legacy Jasmin/Krakatau syntax.
I would recommend updating to the new Krakatau syntax introduced last December, so that it is more reliable and can take advantage of the other features in Krakatau.
The most notable changes are that instead of doing
.limit stack 94
.limit locals 2
; code here
you should do
.code stack 94 locals 2
; code here
.end code
Also, for field and method instructions, you should explicitly tag the type of constant pool reference (required in order to support Java 8 interface methods). For example, instead of
invokespecial java/lang/Object/<init>()V
you should do
invokespecial Method java/lang/Object <init> ()V
The text was updated successfully, but these errors were encountered:
I noticed that your tool is outputting legacy Jasmin/Krakatau syntax.
I would recommend updating to the new Krakatau syntax introduced last December, so that it is more reliable and can take advantage of the other features in Krakatau.
The most notable changes are that instead of doing
.limit stack 94
.limit locals 2
; code here
you should do
.code stack 94 locals 2
; code here
.end code
Also, for field and method instructions, you should explicitly tag the type of constant pool reference (required in order to support Java 8 interface methods). For example, instead of
you should do
The text was updated successfully, but these errors were encountered: