Package railo.runtime.type.scope

Examples of railo.runtime.type.scope.ClosureScope


  public Closure(UDFProperties properties) {
    super(properties);
    PageContext pc = ThreadLocalPageContext.get();
    if(pc.undefinedScope().getCheckArguments())
      this.variables=new ClosureScope(pc,pc.argumentsScope(),pc.localScope(),pc.variablesScope());
    else{
      this.variables=pc.variablesScope();
      variables.setBind(true);
    }
  }
View Full Code Here

TOP

Related Classes of railo.runtime.type.scope.ClosureScope

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.