blob: 08dd763829f9be900b281ee4e8acc3395885c154 (
plain)
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
|
/*
* WhileNode.cpp
*
* Created on: Dec 10, 2012
* Author: attero
*/
#include "WhileNode.h"
WhileNode::WhileNode(ASTNode * parent) {
body = NULL;
this->parent = parent;
this->type = "WhileNode";
}
WhileNode::~WhileNode() {
delete body;
for(auto it = children.begin(); it != children.end(); )
{
delete *it;
it = children.erase(it);
}
}
void WhileNode::add_condition(ASTExpression * expression)
{
children.push_back(expression);
}
void WhileNode::add_body(ASTStatement * statement)
{
body = statement;
}
void WhileNode::execute()
{
while(evaluate_condition())
{
body->execute();
}
}
bool WhileNode::evaluate_condition()
{
auto condition = static_cast<ASTExpression * >(children[0])->evaluate();
return condition.is_true();
}
|