public static NativeFunctionCall readFrom(BytecodeInput input, int nativeIndex)
     throws IOException {
   return new NativeFunctionCall(nativeIndex, input.readFunctionParams());
 }
Example #2
0
 public static DefaultVariable readFrom(BytecodeInput input) throws IOException {
   return new DefaultVariable(input.readCompactInt());
 }