Package railo.transformer.bytecode.expression.var

Examples of railo.transformer.bytecode.expression.var.VariableRef


   
    // name
    if(name instanceof LitString){
      Variable v = new Variable(Scope.SCOPE_UNDEFINED,name.getStart(),name.getEnd());
      v.addMember(new DataMember(name));
      name=new VariableRef(v);
    }
    else if(name instanceof Variable) name=new VariableRef((Variable) name);
    else throw new BytecodeException("name from catch statement is invalid",name.getStart());
   
    addCatch((ExprString)type, (VariableRef)name, b, line);
 
View Full Code Here


   * @param body
   * @param line
   */
  public ForEach(Variable key,Variable value,Body body,Position start, Position end,String label) {
    super(start,end);
    this.key=new VariableRef(key);
    this.value=value;
    this.body=body;
    this.label=label;
    body.setParent(this);
   
View Full Code Here

TOP

Related Classes of railo.transformer.bytecode.expression.var.VariableRef

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.