Puts this symbol table's constant_pool array in the given ByteVector, preceded by the constant_pool_count value. @param output where the JVMS ClassFile's constant_pool array must be put.
(final ByteVector output)
| 361 | * @param output where the JVMS ClassFile's constant_pool array must be put. |
| 362 | */ |
| 363 | void putConstantPool(final ByteVector output) { |
| 364 | output.putShort(constantPoolCount).putByteArray(constantPool.data, 0, constantPool.length); |
| 365 | } |
| 366 | |
| 367 | /** |
| 368 | * Returns the size in bytes of this symbol table's BootstrapMethods attribute. Also adds the |
no test coverage detected