Package railo.transformer.bytecode.statement

Examples of railo.transformer.bytecode.statement.NativeSwitch.addCase()


  private void writeOutUdfCallInner(BytecodeContext bc,Function[] functions, int offset, int length) throws BytecodeException {
    NativeSwitch ns=new NativeSwitch(2,NativeSwitch.ARG_REF,null,null);
   
    for(int i=offset;i<length;i++) {
          ns.addCase(i, functions[i].getBody(),functions[i].getStart(),functions[i].getEnd(),true);
        }
        ns._writeOut(bc);
  }
 
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.