diff options
Diffstat (limited to 'src/main/javassist/bytecode/ConstPool.java')
-rw-r--r-- | src/main/javassist/bytecode/ConstPool.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/javassist/bytecode/ConstPool.java b/src/main/javassist/bytecode/ConstPool.java index f05dfd4f..78935160 100644 --- a/src/main/javassist/bytecode/ConstPool.java +++ b/src/main/javassist/bytecode/ConstPool.java @@ -94,11 +94,21 @@ public final class ConstPool { public static final int CONST_Utf8 = Utf8Info.tag; /** - * <code>Cosnt_MethodHandle</code> + * <code>CONSTANT_MethodHandle</code> */ public static final int CONST_MethodHandle = MethodHandleInfo.tag; /** + * <code>CONSTANT_MethodHandle</code> + */ + public static final int CONST_MethodType = MethodTypeInfo.tag; + + /** + * <code>CONSTANT_MethodHandle</code> + */ + public static final int CONST_InvokeDynamic = InvokeDynamicInfo.tag; + + /** * Represents the class using this constant pool table. */ public static final CtClass THIS = null; |