LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
call.hh
Go to the documentation of this file.
1 
6 #ifndef TREE_CALL_HH
7 # define TREE_CALL_HH
8 
9 # include <list>
10 # include <iosfwd>
11 # include <tree/exp.hh>
12 
13 namespace tree
14 {
15 
16  class Call : public Exp
17  {
18  public:
25  Call (const rExp& func, const std::list<rExp>& args);
26 
30 
31  virtual kind_tree_type kind_get () const override;
32 
38  virtual std::ostream& tag_print (std::ostream&) const override;
39 
40  // Lists need a closer.
41  virtual std::ostream& dump (std::ostream& ostr) const override;
42 
45  };
46 
47 }
48 
49 #endif // !TREE_CALL_HH