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

19 lines
279 B
C
Raw Normal View History

2012-11-17 16:02:32 +00:00
/*
* ASTExpression.h
*
* Created on: Nov 4, 2012
* Author: attero
*/
#ifndef ASTEXPRESSION_H_
#define ASTEXPRESSION_H_
#include "ASTNode.h"
class ASTExpression : public ASTNode {
public:
ASTExpression();
virtual ~ASTExpression();
};
#endif /* ASTEXPRESSION_H_ */