Adds a CONSTANT_Double_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value a double. @return a new or already existing Symbol with the given value.
(final double value)
| 692 | * @return a new or already existing Symbol with the given value. |
| 693 | */ |
| 694 | Symbol addConstantDouble(final double value) { |
| 695 | return addConstantLong(Symbol.CONSTANT_DOUBLE_TAG, Double.doubleToRawLongBits(value)); |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * Adds a CONSTANT_Long_info or CONSTANT_Double_info to the constant pool of this symbol table. |
no test coverage detected