LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
op-exp.hxx
Go to the documentation of this file.
1 
6 #ifndef AST_OP_EXP_HXX
7 # define AST_OP_EXP_HXX
8 
9 # include <ast/op-exp.hh>
10 
11 namespace ast
12 {
13 
14 
15  inline const Exp&
17  {
18  return *left_;
19  }
20  inline Exp&
22  {
23  return *left_;
24  }
25 
26  inline OpExp::Oper
28  {
29  return oper_;
30  }
31 
32  inline const Exp&
34  {
35  return *right_;
36  }
37  inline Exp&
39  {
40  return *right_;
41  }
42 
43 
44 } // namespace ast
45 
46 #endif // !AST_OP_EXP_HXX