This commit is contained in:
Valk Richard Li 2019-11-04 23:33:40 +08:00 committed by GitHub
parent c2ebe97ff7
commit 46f1199a8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -8,8 +8,8 @@
#include <stack>
#include "balloon_type.h"
#include "balloon_var.h"
#include "abstract_syntax_tree.h"
#include "balloon_var.h"
#include "balloon_lexer.h"
#include "balloon_parse.h"

View File

@ -19,6 +19,7 @@ class var
std::string name;
std::list<var> balloon_array;
std::list<var> balloon_hash;
abstract_syntax_tree function;
public:
var()
{