diff options
author | Justyna Att Ilczuk <justyna.ilczuk@gmail.com> | 2012-12-05 20:32:43 +0100 |
---|---|---|
committer | Justyna Att Ilczuk <justyna.ilczuk@gmail.com> | 2012-12-05 20:32:43 +0100 |
commit | c5cf3e2fc93a640c7d75fa007e094f3ed1dffa0b (patch) | |
tree | 434fb04fcdbddb523e44926c444b669fe56204bb /Sencha-lang/AST/ConstantExpression.h | |
parent | 98c33d3ec16821d1628d1f60ea5d7eb1835e5a55 (diff) | |
download | sencha-lang-c5cf3e2fc93a640c7d75fa007e094f3ed1dffa0b.tar.gz sencha-lang-c5cf3e2fc93a640c7d75fa007e094f3ed1dffa0b.tar.bz2 sencha-lang-c5cf3e2fc93a640c7d75fa007e094f3ed1dffa0b.tar.xz sencha-lang-c5cf3e2fc93a640c7d75fa007e094f3ed1dffa0b.zip |
wtf git
Diffstat (limited to 'Sencha-lang/AST/ConstantExpression.h')
-rw-r--r-- | Sencha-lang/AST/ConstantExpression.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Sencha-lang/AST/ConstantExpression.h b/Sencha-lang/AST/ConstantExpression.h new file mode 100644 index 0000000..cc96adc --- /dev/null +++ b/Sencha-lang/AST/ConstantExpression.h @@ -0,0 +1,19 @@ +/* + * ConstantExpression.h + * + * Created on: Dec 5, 2012 + * Author: attero + */ + +#ifndef CONSTANTEXPRESSION_H_ +#define CONSTANTEXPRESSION_H_ +#include "ASTExpression.h" + +class ConstantExpression : public ASTExpression { +public: + ConstantExpression(); + virtual ~ConstantExpression(); + virtual int evaluate(); +}; + +#endif /* CONSTANTEXPRESSION_H_ */ |