blob: 10c091ed4eb43f980e1399dc90148131c0d35358 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package ftbsc.lll.tools.nodes;
import ftbsc.lll.proxies.MethodProxy;
import org.objectweb.asm.tree.MethodInsnNode;
/**
* Overrides the {@link MethodInsnNode} to add a constructor
* taking in a {@link MethodProxy}.
* @since 0.3.0
*/
public class MethodProxyInsnNode extends MethodInsnNode {
/**
* Constructs a new {@link MethodInsnNode} starting
* from a {@link MethodProxy}.
* @param opcode the opcode, must be one of INVOKEVIRTUAL,
* INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE
*/
public MethodProxyInsnNode(MethodProxy m, int opcode) {
super(
opcode,
m.getParent().replace('.', '/'),
m.getSrgName(),
m.getDescriptor()
);
}
}
|