Update abstract syntax tree

This commit is contained in:
Valk Richard Li
2019-09-08 15:36:21 +08:00
committed by GitHub
parent 97f494c2a7
commit 882bbb2c47
6 changed files with 316 additions and 27 deletions
+2 -1
View File
@@ -4,11 +4,12 @@
class ASTree
{
public:
protected:
int line;
int type;
std::string content;
std::list<ASTree> children;
public:
ASTree()
{
line=0;