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)
| 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 |
no outgoing calls
no test coverage detected