PAMunb / JimpleFramework

A Rascal implementation of the Jimple framework.
13 stars 5 forks source link

Missing MultiNewArray expression in Syntax (probably in Decompiler) #26

Open faustocarva opened 4 years ago

faustocarva commented 4 years ago

Java bytecode has newarray, anewarray, or multinewarray for dealing with arrays. We are missing in our abstract syntax (and probably in Decompiler) the multinewarray, which is called newmultiarray in Soot. We can see a code sample that uses this in Java (samples/arrays/Arrays.java).

ASM documentation for this