-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast_stmt.cc
executable file
·87 lines (69 loc) · 2.13 KB
/
ast_stmt.cc
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* File: ast_stmt.cc
* -----------------
* Implementation of statement node classes.
*/
#include "ast_stmt.h"
#include "ast_type.h"
#include "ast_decl.h"
#include "ast_expr.h"
Program::Program(List<Decl*> *d) {
Assert(d != NULL);
(decls=d)->SetParentAll(this);
}
void Program::PrintChildren(int indentLevel) {
decls->PrintAll(indentLevel+1);
printf("\n");
}
StmtBlock::StmtBlock(List<VarDecl*> *d, List<Stmt*> *s) {
Assert(d != NULL && s != NULL);
(decls=d)->SetParentAll(this);
(stmts=s)->SetParentAll(this);
}
void StmtBlock::PrintChildren(int indentLevel) {
decls->PrintAll(indentLevel+1);
stmts->PrintAll(indentLevel+1);
}
ConditionalStmt::ConditionalStmt(Expr *t, Stmt *b) {
Assert(t != NULL && b != NULL);
(test=t)->SetParent(this);
(body=b)->SetParent(this);
}
ForStmt::ForStmt(Expr *i, Expr *t, Expr *s, Stmt *b): LoopStmt(t, b) {
Assert(i != NULL && t != NULL && s != NULL && b != NULL);
(init=i)->SetParent(this);
(step=s)->SetParent(this);
}
void ForStmt::PrintChildren(int indentLevel) {
init->Print(indentLevel+1, "(init) ");
test->Print(indentLevel+1, "(test) ");
step->Print(indentLevel+1, "(step) ");
body->Print(indentLevel+1, "(body) ");
}
void WhileStmt::PrintChildren(int indentLevel) {
test->Print(indentLevel+1, "(test) ");
body->Print(indentLevel+1, "(body) ");
}
IfStmt::IfStmt(Expr *t, Stmt *tb, Stmt *eb): ConditionalStmt(t, tb) {
Assert(t != NULL && tb != NULL); // else can be NULL
elseBody = eb;
if (elseBody) elseBody->SetParent(this);
}
void IfStmt::PrintChildren(int indentLevel) {
test->Print(indentLevel+1, "(test) ");
body->Print(indentLevel+1, "(then) ");
if (elseBody) elseBody->Print(indentLevel+1, "(else) ");
}
ReturnStmt::ReturnStmt(yyltype loc, Expr *e) : Stmt(loc) {
Assert(e != NULL);
(expr=e)->SetParent(this);
}
void ReturnStmt::PrintChildren(int indentLevel) {
expr->Print(indentLevel+1);
}
PrintStmt::PrintStmt(List<Expr*> *a) {
Assert(a != NULL);
(args=a)->SetParentAll(this);
}
void PrintStmt::PrintChildren(int indentLevel) {
args->PrintAll(indentLevel+1, "(args) ");
}