diff options
author | Justyna Att Ilczuk <justyna.ilczuk@gmail.com> | 2012-12-08 22:33:34 +0100 |
---|---|---|
committer | Justyna Att Ilczuk <justyna.ilczuk@gmail.com> | 2012-12-08 22:33:34 +0100 |
commit | 01614b2bf42d3e0140b90b213b8168759f2113da (patch) | |
tree | 0e89f4bd0b13f7a15dae636a0da8ca5f54461639 /Sencha-lang/AST/ConstantExpression.h | |
parent | bdd319ecb8081146f19a40294c9bf4b7fa0010c5 (diff) | |
download | sencha-lang-01614b2bf42d3e0140b90b213b8168759f2113da.tar.gz sencha-lang-01614b2bf42d3e0140b90b213b8168759f2113da.tar.bz2 sencha-lang-01614b2bf42d3e0140b90b213b8168759f2113da.tar.xz sencha-lang-01614b2bf42d3e0140b90b213b8168759f2113da.zip |
handles variables, doing calculations and adding strings
Diffstat (limited to 'Sencha-lang/AST/ConstantExpression.h')
-rw-r--r-- | Sencha-lang/AST/ConstantExpression.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Sencha-lang/AST/ConstantExpression.h b/Sencha-lang/AST/ConstantExpression.h index 4078e24..e02392e 100644 --- a/Sencha-lang/AST/ConstantExpression.h +++ b/Sencha-lang/AST/ConstantExpression.h @@ -8,6 +8,7 @@ #ifndef CONSTANTEXPRESSION_H_ #define CONSTANTEXPRESSION_H_ #include "ASTExpression.h" +#include <iostream> class ConstantExpression : public ASTExpression { public: @@ -20,11 +21,11 @@ public: std::string debug(); - virtual void execute() { //Do nothing - }; virtual ~ConstantExpression(); virtual SenchaObject evaluate(); + + virtual void execute() ; }; #endif /* CONSTANTEXPRESSION_H_ */ |