Examples of UDFCall


Examples of railo.runtime.interpreter.ref.func.UDFCall

            cfml.removeSpace();
           
            if (cfml.isCurrent('(')) {
                if(!(ref instanceof Set)) throw new InterpreterException("invalid syntax "+ref.getTypeName()+" can't called as function");
                Set set=(Set) ref;
                ref=new UDFCall(set.getParent(pc),set.getKey(pc),functionArg(name,false, null,')'));
            }
        }
        if(ref instanceof railo.runtime.interpreter.ref.var.Scope) {
            railo.runtime.interpreter.ref.var.Scope s=(railo.runtime.interpreter.ref.var.Scope)ref;
            if(s.getScope()==Scope.SCOPE_ARGUMENTS || s.getScope()==Scope.SCOPE_LOCAL || s.getScope()==ScopeSupport.SCOPE_VAR) {
View Full Code Here

Examples of railo.runtime.interpreter.ref.func.UDFCall

            Ref[] arguments = functionArg(name,true, function,')');
          //print.out(name+":"+(function!=null));
            if(function!=null) return new BIFCall(function,arguments);

            Ref ref = new railo.runtime.interpreter.ref.var.Scope(Scope.SCOPE_UNDEFINED);
            return new UDFCall(ref,name,arguments);
        }
        //check scope
        return scope(name);
    }
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.