Returns the abstract type corresponding to the internal name of a class. @param symbolTable the type table to use to lookup and store type Symbol. @param internalName the internal name of a class. This must not be an array type descriptor. @return the abstract type value correspo
(
final SymbolTable symbolTable, final String internalName)
| 259 | * @return the abstract type value corresponding to the given internal name. |
| 260 | */ |
| 261 | static int getAbstractTypeFromInternalName( |
| 262 | final SymbolTable symbolTable, final String internalName) { |
| 263 | return REFERENCE_KIND | symbolTable.addType(internalName); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Returns the abstract type corresponding to the given type descriptor. |
no test coverage detected