Adds a CONSTANT_Module_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param moduleName a fully qualified name (using dots) of a module. @return a new or already existing Symbol with the given value.
(final String moduleName)
| 982 | * @return a new or already existing Symbol with the given value. |
| 983 | */ |
| 984 | Symbol addConstantModule(final String moduleName) { |
| 985 | return addConstantUtf8Reference(Symbol.CONSTANT_MODULE_TAG, moduleName); |
| 986 | } |
| 987 | |
| 988 | /** |
| 989 | * Adds a CONSTANT_Package_info to the constant pool of this symbol table. Does nothing if the |
no test coverage detected