Adds a CONSTANT_Long_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value a long. @return a new or already existing Symbol with the given value.
(final long value)
| 681 | * @return a new or already existing Symbol with the given value. |
| 682 | */ |
| 683 | Symbol addConstantLong(final long value) { |
| 684 | return addConstantLong(Symbol.CONSTANT_LONG_TAG, value); |
| 685 | } |
| 686 | |
| 687 | /** |
| 688 | * Adds a CONSTANT_Double_info to the constant pool of this symbol table. Does nothing if the |
no test coverage detected