Package railo.transformer.bytecode.statement

Examples of railo.transformer.bytecode.statement.NativeSwitch$Case


        }
        cv.visitAfter(bc);
  }

  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

Related Classes of railo.transformer.bytecode.statement.NativeSwitch$Case

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.