/* 92 */ if (TypeUtils.isAbstract(method.getModifiers())) {
/* 93 */ e.throw_exception(ABSTRACT_METHOD_ERROR, method.toString() + " is abstract");
/* */ } else {
/* 95 */ e.load_this();
/* 96 */ e.load_args();
/* 97 */ e.super_invoke(method.getSignature());
/* */ }
/* 99 */ e.return_value();
/* 100 */ e.end_method();
/* */
/* 103 */ e = context.beginMethod(ce, method);