Returns the "canonical" Label instance corresponding to this label's bytecode offset, if known, otherwise the label itself. The canonical instance is the first label (in the order of their visit by MethodVisitor#visitLabel) corresponding to this bytecode offset. It cannot be known fo
()
| 318 | * frame is set in {@link MethodWriter#visitLabel}. |
| 319 | */ |
| 320 | final Label getCanonicalInstance() { |
| 321 | return frame == null ? this : frame.owner; |
| 322 | } |
| 323 | |
| 324 | // ----------------------------------------------------------------------------------------------- |
| 325 | // Methods to manage line numbers |
no outgoing calls
no test coverage detected