edits
[satune.git] / src / AST / astnode.h
1 #ifndef ASTNODE_H
2 #define ASTNODE_H
3 #include "classlist.h"
4 #include "ops.h"
5
6 class ASTNode {
7  public:
8   ASTNode(ASTNodeType _type) : type(_type) {}
9         ASTNodeType type;
10         MEMALLOC;
11 };
12
13 #endif