Visits the end of the module. This method, which is the last one to be called, is used to inform the visitor that everything have been visited.
()
| 168 | * inform the visitor that everything have been visited. |
| 169 | */ |
| 170 | public void visitEnd() { |
| 171 | if (mv != null) { |
| 172 | mv.visitEnd(); |
| 173 | } |
| 174 | } |
| 175 | } |