Package railo.transformer.bytecode.visitor

Examples of railo.transformer.bytecode.visitor.DecisionIntVisitor.visitBegin()


  private void addCase(BytecodeContext bc, ConditionVisitor cv, Tag tag, int expression) throws BytecodeException {
    GeneratorAdapter adapter = bc.getAdapter();
   
    cv.visitWhenBeforeExpr();
      DecisionIntVisitor div=new DecisionIntVisitor();
      div.visitBegin();
        // List.listFindNoCase(case.value,expression,del);
        tag.getAttribute("value").getValue().writeOut(bc,Expression.MODE_REF);
        adapter.loadLocal(expression);
        Attribute attr = tag.getAttribute("delimiters");
        if(attr!=null)attr.getValue().writeOut(bc,Expression.MODE_REF);
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.