Package org.jnode.vm.classmgr

Examples of org.jnode.vm.classmgr.VmConstIMethodRef


                    break;
                case 0xb8:
                    handler.visit_invokestatic(cp.getConstMethodRef(getu2()));
                    break;
                case 0xb9: {
                    VmConstIMethodRef ref = cp.getConstIMethodRef(getu2());
                    int count = getu1();
                    skip();
                    handler.visit_invokeinterface(ref, count);
                    break;
                }
View Full Code Here

TOP

Related Classes of org.jnode.vm.classmgr.VmConstIMethodRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.