All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.JastAddJ.CONSTANT_MethodHandle_Info Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
package soot.JastAddJ;

/**
 * @ast class
 */
public class CONSTANT_MethodHandle_Info extends CONSTANT_Info {

    public int reference_kind;


    public int reference_index;


    public CONSTANT_MethodHandle_Info(BytecodeParser parser) {
      super(parser);
      reference_kind = p.u1();
      reference_index = p.u2();
    }


    public String toString() {
        return "MethodHandleInfo: " + reference_kind + " " + reference_index;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy