Package cn.wensiqun.asmsupport

Examples of cn.wensiqun.asmsupport.Parameterized


    /**
     * 将方法的参数入栈
     */
    protected void argumentsToStack() {
      for(int i=0; i<arguments.length; i++){
            Parameterized argu = arguments[i];
            log.debug("push argument to stack");
            if(argu instanceof IVariable){
                ((IVariable) argu).availableFor(this);
            }
            argu.loadToStack(block);
            cast(argu.getParamterizedType(), mtdEntity.getArgClasses()[i]);
        }
    }
View Full Code Here

TOP

Related Classes of cn.wensiqun.asmsupport.Parameterized

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.