-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.C
57 lines (51 loc) · 1.09 KB
/
ast.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "ast.H"
#include "sem.H"
using namespace std;
namespace AST {
Node::Node() {}
Node::~Node() {}
ostream& Binary::print(ostream& os) const
{
_left->print(os);
os << std::string(opName());
return _right->print(os);
}
ostream& MthCall::print(ostream& os) const {
_callee->print(os);
os << '(';
for(std::list<Expr*>::const_iterator i = _args.begin();i!=_args.end();++i) {
(*i)->print(os);
os << " ";
}
os << ')';
return os;
}
ostream& IfTE::print(ostream& os) const
{
os << "if (";
_cond->print(os);
os << ") then ";
_tb->print(os);
if (_eb) {
os << " else ";
_eb->print(os);
}
return os;
}
ostream& StmtLocalDecl::print(ostream& os) const
{
_type->print(os);
os << " : ";
_id->print(os);
if (_desc)
os << " " << *_desc;
return os << ';' << endl;
}
ostream& Identifier::print(ostream& os) const
{
os << _value;
if (_desc)
os << " " << *_desc;
return os;
}
}