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

Method getExceptionTableSize

src/jvm/clojure/asm/Handler.java:175–177  ·  view source on GitHub ↗

Returns the size in bytes of the JVMS exception_table corresponding to the Handler list that begins with the given element. This includes the exception_table_length field. @param firstHandler the beginning of a Handler list. May be null . @return the size in bytes of the exception_ta

(final Handler firstHandler)

Source from the content-addressed store, hash-verified

173 * @return the size in bytes of the exception_table_length and exception_table structures.
174 */
175 static int getExceptionTableSize(final Handler firstHandler) {
176 return 2 + 8 * getExceptionTableLength(firstHandler);
177 }
178
179 /**
180 * Puts the JVMS exception_table corresponding to the Handler list that begins with the given

Callers 2

computeMethodInfoSizeMethod · 0.95
putMethodInfoMethod · 0.95

Calls 1

Tested by

no test coverage detected