PAMunb / JimpleFramework

A Rascal implementation of the Jimple framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing MultiNewArray expression in Syntax (probably in Decompiler)

faustocarva opened this issue · comments

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