summaryrefslogtreecommitdiffstats
path: root/Sencha-lang/AST/BasicExpression.h
blob: cdb0b689de919ed4ae91f8fd02b86e908f47e233 (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
/*
 * BasicExpression.h
 *
 *  Created on: Dec 5, 2012
 *      Author: attero
 */

#ifndef BASICEXPRESSION_H_
#define BASICEXPRESSION_H_
#include "ASTExpression.h"
#include <iostream>
class BasicExpression : public ASTExpression {
public:

	std::string oper;

	bool children_set;
	void set_operator(std::string op);
	void set_left_operand(ASTNode * left);
	void set_right_operand(ASTNode * right);
	virtual SenchaObject evaluate();
	virtual void execute();
	virtual void execute_quietly();


	std::string debug() ;
	virtual void accept(Visitor * visitor);

	BasicExpression(ASTNode * parent);
	virtual ~BasicExpression();
};

#endif /* BASICEXPRESSION_H_ */