(
final String owner, final String name, final String descriptor)
| 303 | } |
| 304 | |
| 305 | @Override |
| 306 | public final void visitOuterClass( |
| 307 | final String owner, final String name, final String descriptor) { |
| 308 | enclosingClassIndex = symbolTable.addConstantClass(owner).index; |
| 309 | if (name != null && descriptor != null) { |
| 310 | enclosingMethodIndex = symbolTable.addConstantNameAndType(name, descriptor); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | @Override |
| 315 | public final AnnotationVisitor visitAnnotation(final String descriptor, final boolean visible) { |
no test coverage detected