sencha-lang/Sencha-lang/AST/BasicExpression.h

33 lines
687 B
C
Raw Normal View History

2012-12-05 19:32:43 +00:00
/*
* BasicExpression.h
*
* Created on: Dec 5, 2012
* Author: attero
*/
#ifndef BASICEXPRESSION_H_
#define BASICEXPRESSION_H_
#include "ASTExpression.h"
#include <iostream>
2012-12-05 19:32:43 +00:00
class BasicExpression : public ASTExpression {
public:
2012-12-05 19:32:43 +00:00
void set_operator(std::string op);
void set_left_operand(ASTNode * left);
void set_right_operand(ASTNode * right);
virtual SenchaObject evaluate();
virtual void execute();
2012-12-09 11:57:51 +00:00
virtual void execute_quietly();
2012-12-21 15:21:49 +00:00
std::string get_operator() { return oper; }
virtual void accept(Visitor * visitor);
BasicExpression(ASTNode * parent);
2012-12-05 19:32:43 +00:00
virtual ~BasicExpression();
2012-12-21 15:21:49 +00:00
private:
bool children_set;
std::string oper;
2012-12-05 19:32:43 +00:00
};
#endif /* BASICEXPRESSION_H_ */