Adds a CONSTANT_Integer_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value an int. @return a new or already existing Symbol with the given value.
(final int value)
| 626 | * @return a new or already existing Symbol with the given value. |
| 627 | */ |
| 628 | Symbol addConstantInteger(final int value) { |
| 629 | return addConstantInteger(Symbol.CONSTANT_INTEGER_TAG, value); |
| 630 | } |
| 631 | |
| 632 | /** |
| 633 | * Adds a CONSTANT_Float_info to the constant pool of this symbol table. Does nothing if the |
no test coverage detected