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

Method getExceptionTableLength

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

Returns the number of elements of the Handler list that begins with the given element. @param firstHandler the beginning of a Handler list. May be null . @return the number of elements of the Handler list that begins with 'handler'.

(final Handler firstHandler)

Source from the content-addressed store, hash-verified

156 * @return the number of elements of the Handler list that begins with 'handler'.
157 */
158 static int getExceptionTableLength(final Handler firstHandler) {
159 int length = 0;
160 Handler handler = firstHandler;
161 while (handler != null) {
162 length++;
163 handler = handler.nextHandler;
164 }
165 return length;
166 }
167
168 /**
169 * Returns the size in bytes of the JVMS exception_table corresponding to the Handler list that

Callers 2

getExceptionTableSizeMethod · 0.95
putExceptionTableMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected