Package IRTree2

Source Code of IRTree2.CALL

package IRTree2;

import IRvisitor.IntVisitor;
import IRvisitor.StringVisitor;
import IRvisitor.TempVisitor;
import temp.Temp;
import IRTree2.CALL;
import IRTree2.Exp;
import IRTree2.ExpList;


public class CALL extends Exp
{

  public Exp     func;
  public ExpList args;

  public CALL(Exp f, ExpList a)
  {
    func = f;
    args = a;
  }

  public ExpList kids()
  {
    return new ExpList(func, args);
  }

  public Exp build(ExpList kids)
  {
    return new CALL(kids.head, kids.tail);
  }

  public String accept(StringVisitor v)
  {
    return v.visit(this);
  }

  public void accept(IntVisitor v, int d)
  {
    v.visit(this, d);
  }

  public Temp accept(TempVisitor v)
  {
    return v.visit(this);
  }
}
TOP

Related Classes of IRTree2.CALL

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.