Package railo.runtime.interpreter.ref.op

Examples of railo.runtime.interpreter.ref.op.GTE


          }
                // >/>=
          else if (cfml.forwardIfCurrent('>')) {
            if(cfml.forwardIfCurrent('='))     {
              cfml.removeSpace();
                      ref = new GTE(ref,concatOp());
            }
            else                 {
              cfml.removeSpace();
                      ref = new GT(ref,concatOp());
            }
            hasChanged=true;
          }
               
                // gt, gte, greater than or equal to, greater than
                else if (cfml.isCurrent('g')) {
                    if (cfml.forwardIfCurrent("gt")) {
                        if(cfml.forwardIfCurrent('e')) {
                            cfml.removeSpace();
                            ref=new GTE(ref,concatOp());
                        }
                        else {
                            cfml.removeSpace();
                            ref=new GT(ref,concatOp());
                        }
                        hasChanged=true;
                    }
                    else if (cfml.forwardIfCurrent("greater","than")) {
                        if(cfml.forwardIfCurrent("or" ,"equal", "to",true)) {
                            cfml.removeSpace();
                            ref=new GTE(ref,concatOp());
                        }
                        else {
                            cfml.removeSpace();
                            ref=new GT(ref,concatOp());
                        }
                        hasChanged=true;
                    }  
                    else if (cfml.forwardIfCurrent("ge")) {
                        cfml.removeSpace();
                        ref=new GTE(ref,concatOp());
                        hasChanged=true;
                    }              
                }
               
                // is, is not
View Full Code Here

TOP

Related Classes of railo.runtime.interpreter.ref.op.GTE

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.