Package railo.transformer.bytecode.visitor

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


       
        // if(endLine!=-1 && count > endLine) break;
        DecisionIntVisitor div=new DecisionIntVisitor();
        div.visitBegin();
          adapter.loadLocal(endline);
        div.visitNEQ();
          adapter.push(-1);
        div.visitEnd(bc);
        Label end2=new Label();
        adapter.ifZCmp(Opcodes.IFEQ, end2);
       
View Full Code Here


        adapter.loadLocal(expression);
        Attribute attr = tag.getAttribute("delimiters");
        if(attr!=null)attr.getValue().writeOut(bc,Expression.MODE_REF);
        else adapter.push(",");
        adapter.invokeStatic(Types.LIST_UTIL, LIST_FIND_NO_CASE);
      div.visitNEQ();
        adapter.push(-1);
      div.visitEnd(bc);
    cv.visitWhenAfterExprBeforeBody(bc);
      tag.getBody().writeOut(bc);
    cv.visitWhenAfterBody(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.