Adds a CONSTANT_MethodType_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param methodDescriptor a method descriptor. @return a new or already existing Symbol with the given value.
(final String methodDescriptor)
| 875 | * @return a new or already existing Symbol with the given value. |
| 876 | */ |
| 877 | Symbol addConstantMethodType(final String methodDescriptor) { |
| 878 | return addConstantUtf8Reference(Symbol.CONSTANT_METHOD_TYPE_TAG, methodDescriptor); |
| 879 | } |
| 880 | |
| 881 | /** |
| 882 | * Adds a CONSTANT_Dynamic_info to the constant pool of this symbol table. Also adds the related |
no test coverage detected