Delete ast.h

This commit is contained in:
Valk Richard Li 2019-10-01 23:03:07 +08:00 committed by GitHub
parent b4a1a2f78f
commit c9d2e541d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
#ifndef __AST_H__
#define __AST_H__
#include "token_type.h"
#include <stack>
#include <list>
#include <cstring>
enum tree_node_type
{
__syntax_tree_begin=128,
__error_syntax,
__null_statement,
__definition,
__assignment,
__loop,
__choose
};
struct node
{
int type;
int line;
std::string content;
std::list<node> children;
};
#endif