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

21 lines
309 B
C++

/*
* ASTExpression.h
*
* Created on: Nov 4, 2012
* Author: attero
*/
#ifndef ASTEXPRESSION_H_
#define ASTEXPRESSION_H_
#include <string>
#include "ASTNode.h"
class ASTExpression : public ASTNode {
public:
virtual int evaluate() = 0;
virtual ~ASTExpression();
};
#endif /* ASTEXPRESSION_H_ */