diff options
| author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-28 18:24:40 -0600 | 
|---|---|---|
| committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-28 18:24:40 -0600 | 
| commit | 3c890c8bd87c91fd607975ed62977f3e5f93b0fa (patch) | |
| tree | 066a439ceabdc2fabda59766844978045e81f9cc /src/ast/node.cpp | |
| parent | 3f75a3cd12eb4eb2f34a5b6e07f82e7ebf51fe03 (diff) | |
| download | chill-3c890c8bd87c91fd607975ed62977f3e5f93b0fa.tar.gz chill-3c890c8bd87c91fd607975ed62977f3e5f93b0fa.tar.bz2 chill-3c890c8bd87c91fd607975ed62977f3e5f93b0fa.zip | |
staging
Diffstat (limited to 'src/ast/node.cpp')
| -rw-r--r-- | src/ast/node.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/src/ast/node.cpp b/src/ast/node.cpp index ea74159..1b1995c 100644 --- a/src/ast/node.cpp +++ b/src/ast/node.cpp @@ -5,6 +5,14 @@  #include "chillAST.h"  #include "printer/dump.h"  #include "printer/cfamily.h" +#include <stack> + +void chillAST_Node::fixChildInfo(std::stack<chillAST_TypedefTable *> &tdt, std::stack<chillAST_SymbolTable *> &st, +                                 chillAST_SourceFile *s) { + +} + +void chillAST_Node::fixChildInfo() {}  void chillAST_Node::mergeChildInfo(chillAST_Node) {    // TODO if (par) par->add to definition for vardecl/typedecl | 
