MCPcopy Index your code
hub / github.com/clojure/clojure / getAbstractTypeFromInternalName

Method getAbstractTypeFromInternalName

src/jvm/clojure/asm/Frame.java:261–264  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

computeAllFramesMethod · 0.95

Calls 1

addTypeMethod · 0.80

Tested by

no test coverage detected