Package railo.runtime.functions

Examples of railo.runtime.functions.BIF


          }
          else {
            arguments = RefUtil.getValue(pc,refArgs);
          }
        }
        BIF bif=flf.getBIF();
       
        if(flf.getMemberChaining() && obj!=null) {
          bif.invoke(pc, arguments);
          return obj;
        }
        return Caster.castTo(pc,flf.getReturnTypeAsString(),bif.invoke(pc, arguments),false);
  }
View Full Code Here

TOP

Related Classes of railo.runtime.functions.BIF

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.