Starts the visit of the method's code, if any (i.e. non abstract method).
()
| 222 | |
| 223 | /** Starts the visit of the method's code, if any (i.e. non abstract method). */ |
| 224 | public void visitCode() { |
| 225 | if (mv != null) { |
| 226 | mv.visitCode(); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Visits the current state of the local variables and operand stack elements. This method must(*) |
no outgoing calls
no test coverage detected