Browse Source

add constants to list

tags/V1_9_0_RC3
Andy Clement 6 years ago
parent
commit
39b70af69b
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      bcel-builder/src/org/aspectj/apache/bcel/Constants.java

+ 4
- 2
bcel-builder/src/org/aspectj/apache/bcel/Constants.java View File

@@ -155,14 +155,16 @@ public interface Constants {
public final static byte CONSTANT_MethodType = 16;
public final static byte CONSTANT_InvokeDynamic = 18;
// Java 9
// J9:
public final static byte CONSTANT_Module = 19;
public final static byte CONSTANT_Package = 20;

public final static String[] CONSTANT_NAMES = { "", "CONSTANT_Utf8", "", "CONSTANT_Integer", "CONSTANT_Float", "CONSTANT_Long",
"CONSTANT_Double", "CONSTANT_Class", "CONSTANT_String", "CONSTANT_Fieldref", "CONSTANT_Methodref",
"CONSTANT_InterfaceMethodref", "CONSTANT_NameAndType","","","CONSTANT_MethodHandle","CONSTANT_MethodType","","CONSTANT_InvokeDynamic" };
"CONSTANT_InterfaceMethodref", "CONSTANT_NameAndType","","","CONSTANT_MethodHandle","CONSTANT_MethodType","","CONSTANT_InvokeDynamic",
// J9:
"CONSTANT_Module", "CONSTANT_Package"};

/**
* The name of the static initializer, also called "class initialization method" or "interface initialization

Loading…
Cancel
Save