/* * IncorrectExpression.cpp * * Created on: Dec 6, 2012 * Author: attero */ #include "IncorrectExpression.h" IncorrectExpression::IncorrectExpression(ASTNode * parent, std::string error_message) { this->parent = parent; this->error_message = error_message; } IncorrectExpression::~IncorrectExpression() { // TODO Auto-generated destructor stub } SenchaObject IncorrectExpression::evaluate() { SenchaObject null_object; return null_object; }